Created
September 8, 2021 10:08
-
-
Save Junch/ceb7449005fd3288ec34a2135414e763 to your computer and use it in GitHub Desktop.
vscode settings for LaTeX Workshop plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "latex-workshop.view.pdf.viewer": "tab", | |
| "latex-workshop.latex.tools": [ | |
| { | |
| "name": "latexmk", | |
| "command": "latexmk", | |
| "args": [ | |
| "-shell-escape", | |
| "-synctex=1", | |
| "-interaction=nonstopmode", | |
| "-file-line-error", | |
| "-pdf", | |
| "-outdir=%OUTDIR%", | |
| "%DOC%" | |
| ] | |
| }, | |
| { | |
| // 编译工具和命令 | |
| "name": "xelatex", | |
| "command": "xelatex", | |
| "args": [ | |
| "-synctex=1", | |
| "-interaction=nonstopmode", | |
| "-file-line-error", | |
| "-pdf", | |
| "-shell-escape", | |
| "%DOCFILE%" | |
| ] | |
| }, | |
| { | |
| "name": "pdflatex", | |
| "command": "pdflatex", | |
| "args": [ | |
| "-shell-escape", | |
| "-synctex=1", | |
| "-interaction=nonstopmode", | |
| "-file-line-error", | |
| "%DOCFILE%" | |
| ] | |
| }, | |
| { | |
| "name": "bibtex", | |
| "command": "bibtex", | |
| "args": [ | |
| "%DOCFILE%" | |
| ] | |
| } | |
| ], | |
| "latex-workshop.latex.recipes": [ | |
| { | |
| "name": "xelatex", | |
| "tools": [ | |
| "xelatex" | |
| ], | |
| }, | |
| { | |
| "name": "pdflatex", | |
| "tools": [ | |
| "pdflatex" | |
| ] | |
| }, | |
| { | |
| "name": "xe->bib->xe->xe", | |
| "tools": [ | |
| "xelatex", | |
| "bibtex", | |
| "xelatex", | |
| "xelatex" | |
| ] | |
| }, | |
| { | |
| "name": "pdf->bib->pdf->pdf", | |
| "tools": [ | |
| "pdflatex", | |
| "bibtex", | |
| "pdflatex", | |
| "pdflatex" | |
| ] | |
| } | |
| ], |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment