Skip to content

Instantly share code, notes, and snippets.

@yuqlid
Created August 30, 2018 08:58
Show Gist options
  • Save yuqlid/4adc1907761c8e21d4c31ea0b83d4dea to your computer and use it in GitHub Desktop.
Save yuqlid/4adc1907761c8e21d4c31ea0b83d4dea to your computer and use it in GitHub Desktop.
VSCode Setting
{
"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