Ubuntu虚拟机调教 - 3

新博客地址:https://gyrojeff.top,欢迎访问! 本文为博客自动同步文章,为了更好的阅读体验,建议您移步至我的博客👇

本文标题:Ubuntu虚拟机调教 - 3

文章作者:gyro永不抽风

发布时间:2020年03月06日 - 21:03

最后更新:2020年09月15日 - 07:09

原始链接:http://hexo.gyrojeff.moe/2020/03/06/Ubuntu%E8%99%9A%E6%8B%9F%E6%9C%BA%E8%B0%83%E6%95%99-3/

许可协议: 署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 转载请保留原文链接及作者!

人生苦短,我选择LaTeX

LaTeX安装

1
sudo apt install texlive
1
sudo apt-get install latex-cjk-all
1
sudo apt-get install texlive-full
1
sudo apt-get install texlive-xetex
1
sudo apt-get install tex-live-lang-chinese
1
sudo apt-get install texstudio

VSCode 整治

安装LaTeX Workshop插件

安装LaTeX Snippets插件

打开设置,输入:

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
63
64
{
"latex-workshop.synctex.afterBuild.enabled": true,
"latex-workshop.view.pdf.viewer": "tab",
"latex-workshop.latex.tools": [
{
// 编译工具和命令
"name": "xelatex",
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"%DOCFILE%"
]
},
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOCFILE%"
]
},
{
"name": "bibtex",
"command": "bibtex",
"args": [
"%DOCFILE%"
]
}
],
"latex-workshop.latex.recipes": [
{
"name": "xelatex",
"tools": [
"xelatex"
]
},
{
"name": "xe->bib->xe->xe",
"tools": [
"xelatex",
"bibtex",
"xelatex",
"xelatex"
]
}
],
"editor.fontFamily": "'Consolas', '', monospace, 'Droid Sans Fallback'",
"window.zoomLevel": 1,
"editor.renderWhitespace": "boundary",




"editor.suggestSelection": "first",
"editor.snippetSuggestions": "top",
"editor.suggest.showWords": false,
"editor.detectIndentation": false,
"editor.suggest.snippetsPreventQuickSuggestions": false
}

posted @ 2020-09-15 09:13  gyro永不抽风  阅读(273)  评论(0编辑  收藏  举报