-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.Rmd
executable file
·64 lines (56 loc) · 1.75 KB
/
index.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
```{r setup, include=FALSE}
# 为了让日期显示为英文
locale = Sys.setlocale(category = "LC_TIME", locale = 'en_US.UTF-8')
localSystem = R.Version()$system
options(
htmltools.dir.version = FALSE, formatR.indent = 2, width = 55, digits = 4
)
if (system('phantomjs --version') != 0)
webshot::install_phantomjs()
# 生成依赖包
knitr::write_bib(c(
.packages(), 'bookdown', 'knitr', 'rmarkdown', 'htmlwidgets', 'webshot', 'DT',
'miniUI', 'tufte', 'servr', 'citr', 'rticles'
), 'bib/packages.bib')
# 支持图片标题双语言,为了排版优化,强制加入 \centering
# https://github.com/yihui/knitr/issues/1554
library(knitr)
knit_hooks$set(plot = function(x, options) {
if(!is.null(options$bicap)){
paste("\\begin{figure}[!htp]",
"\n\\centering",
hook_plot_tex(x, options),
"\n\\bicaption{", options$bicap[1], "}{",options$bicap[2],"}",
"\n\\end{figure}", sep = "")
}
else{
hook_plot_tex(x, options)
}
})
```
---
title: "上海交通大学论文 Rmd bookdown 模板"
author: "某 \\quad 某"
documentclass: sjtuthesis
classoption: [degree=master, zihao=-4]
studentid: B1103492
supervisor: "深度操作系统"
major: "通信与信息系统"
date: "`r format(Sys.Date(),format='%Y年%m月%d日')`"
keywords: "上海交大\\quad 饮水思源\\quad 爱国荣校"
enauthor: "Mou Mou"
ensupervisor: "Deepin"
eninstitute: "Deepin OS"
endate: "`r format(Sys.Date(),format='%b. %d, %Y')`"
entitle: "SJTU Bookdown Template"
enmajor: "Comminucation and Information Tech"
enkeywords: "SJTU, XeTeX/LaTeX template, Bookdown, Rmarkdown"
bibliography: [bib/thesis.bib, bib/packages.bib]
biblio-style: apalike
link-citations: yes
colorlinks: yes
lot: yes
lof: yes
href2footnote: yes
github-repo: bubifengyun/SJTUThesis-Rmd
---