Created
August 30, 2018 08:58
-
-
Save yuqlid/4adc1907761c8e21d4c31ea0b83d4dea to your computer and use it in GitHub Desktop.
VSCode Setting
This file contains 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
{ | |
"python.pythonPath": "/Users/yuki/.pyenv/versions/anaconda3-5.1.0", | |
"workbench.iconTheme": "vscode-icons", | |
"latex-workshop.latex.tools": [ | |
{ | |
"command": "latexmk", | |
"args": [ | |
"-e", | |
"$latex=q/uplatex %O -synctex=1 -interaction=nonstopmode -file-line-error %S/", | |
"-e", | |
"$bibtex=q/upbibtex %O %B/", | |
"-e", | |
"$biber=q/biber %O --bblencoding=utf8 -u -U --output_safechars %B/", | |
"-e", | |
"$makeindex=q/upmendex %O -o %D %S/", | |
"-e", | |
"$dvipdf=q/dvipdfmx %O -o %D %S/", | |
"-norc", | |
"-pdfdvi", | |
"%DOC%" | |
], | |
"name": "latexmk" | |
} | |
], | |
"latex-workshop.latex.recipes": [ | |
{ | |
"name": "latexmk (tex to PDF)", | |
"tools": [ | |
"latexmk" | |
] | |
} | |
], | |
"latex-workshop.view.pdf.viewer": "browser", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment