Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
y-yating committed Nov 9, 2018
1 parent 8aaeb6a commit a678776
Showing 1 changed file with 34 additions and 8 deletions.
42 changes: 34 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,7 @@ latexmk

`到文档最后成稿,只需要小改的时候,才推荐用批处理就行操作,不然很难定位错误。`


## 在vscode上编译 (LaTex Workshop)

对于使用vscode写tex的用户,添加如下配置,就可以在vscode上使用使用XeLaTeX了:
- 在vscode上编译 (LaTex Workshop):对于使用vscode写tex的用户,添加如下配置,可在vscode上使用XeLaTeX:

```
"latex-workshop.latex.tools": [
Expand All @@ -89,7 +86,6 @@ latexmk
}
]
```

## Linux用户可能遇到的问题

字体缺失问题: 因为库里用到的字体是Windows里的宋体、楷体、黑体等字体,在编译过程中会报错缺失这些字体,可以到fontzone等网站下载,copy到`/usr/share/fonts`里然后刷新cache即可。
Expand All @@ -100,16 +96,46 @@ latexmk

楷体:`https://fontzone.net/downloadfile/kaiti`

### 在vscode上编译 (LaTex Workshop)

对于使用vscode写tex的用户,添加如下配置,就可以在vscode上使用使用XeLaTeX了:

```
"latex-workshop.latex.tools": [
{
"name": "xelatex",
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
]
}
],
"latex-workshop.latex.recipes": [
{
"name": "xelatex -> bibtex -> xelatex*2",
"tools": [
"xelatex",
"bibtex",
"xelatex",
"xelatex"
]
}
]
```


## 作者

[Yang Yating](https://github.com/y-yating/)
[Yang Yating](https://github.com/y-yating/),
[Wang Wei](https://github.com/qiuzhu/)
## 致谢
本项目得到了北京理工大学学生事务中心的资助。

感谢大家宝贵的修改意见!!!欢迎大家一同努力完善BIT-Thesis模板!

## v1.4版本更新
- 按照2018年最新《北京理工大学研究生学位论文撰写规范》调整格式
## v1.5版本更新
- 调整目录格式
(目录、插图、表格索引页的标题中加入一个字符间距;目录中一级标题改为黑体)

0 comments on commit a678776

Please sign in to comment.