Skip to content

Instantly share code, notes, and snippets.

@kaityo256
Created October 2, 2019 03:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kaityo256/b5354af9719e1614fa4d3bdf81d6e0bd to your computer and use it in GitHub Desktop.
Save kaityo256/b5354af9719e1614fa4d3bdf81d6e0bd to your computer and use it in GitHub Desktop.
VSCode用の日本語LaTeXコンパイル設定
{
"latex-workshop.latex.recipes": [
{
"name": "platex*2+dvipdfmx",
"tools": [
"platex",
"platex",
"dvipdfmx"
]
}
],
"latex-workshop.latex.tools": [
{
"name": "platex",
"command": "platex",
"args": [
"-interaction=nonstopmode",
"%DOC%"
]
},
{
"name": "dvipdfmx",
"command": "dvipdfmx",
"args": [
"%DOC%"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment