赞
踩
最近刚写完毕业论文, 期间用到了一些工具,有好用的也有不好用的,在此做个记录和分享。
texlive所带的texword太不好编辑了,vscode超强,可直接在侧边显示目录,然后对文献、图表引用代码区别显示,是个好用的编辑器。
简单说一下怎么用:
安装texlive
安装VS Code
安装SumSmartpdf,这个是用于实时浏览latex代码运行生成的pdf文件的外部PDF。
VS Code配置latex环境:
CTRL + shift + p 打开json文件
写入配置代码,改一下其中三个路径代码,分别为SunSmartPdf的安装路径,VS Code的安装路径,VS Code下的一个子文件。
- {
- "latex-workshop.latex.recipes": [
- // {
- // "name": "xelatex",
- // "tools": [
- // "xelatex"
- // ]
- // },
- // {
- // "name": "latexmk",
- // "tools": [
- // "latexmk"
- // ]
- // },
- {
- "name": "xelatex -> bibtex -> xelatex*2",
- "tools": [
- "xelatex",
- "bibtex",
- "xelatex",
- "xelatex"
- ]
- }
- ],
- "latex-workshop.latex.tools": [{
- "name": "xelatex",
- "command": "xelatex",
- "args": [
- "-synctex=1",
- "-interaction=nonstopmode",
- "-file-line-error",
- "-pdf",
- "%DOC%"
- ]
- }, {

Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。