Created
July 7, 2018 05:15
-
-
Save peacock0803sz/a3136a2708569d1b29d4a91bafb0b5ba to your computer and use it in GitHub Desktop.
VSCodeの設定
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
{ | |
// editor | |
"editor.fontSize": 16, | |
"terminal.integrated.fontSize": 16, | |
"editor.scrollBeyondLastLine": false, | |
// scm | |
// workbench | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.iconTheme": "material-icon-theme", | |
// window | |
// zenMode | |
// files | |
// explorer | |
// search | |
// http | |
// terminal.integrated | |
"terminal.integrated.confirmOnExit": true, | |
"terminal.integrated.cursorStyle": "line", | |
"terminal.integrated.cwd": "~/Document/", | |
// latex | |
"latex-workshop.latex.recipes": [ | |
{ | |
"name": "ptex2pdf", | |
"tools": [ | |
"ptex2pdf",//タイプセットに使うtoolの名前 | |
] | |
} | |
], | |
"latex-workshop.latex.tools": [//タイプセットに使うtool一覧 | |
{ | |
"name": "latexmk", | |
"command": "latexmk", | |
"args": [ | |
"-synctex=1", | |
"-interaction=nonstopmode", | |
"-file-line-error", | |
"-pdf", | |
"%DOC%" | |
] | |
}, | |
{ | |
"name": "ptex2pdf",//ptex2pdf自体の設定はこれまでと一緒 | |
"command": "ptex2pdf", | |
"args": [ | |
"-l", | |
"-ot", | |
"-kanji=utf8 -synctex=1", | |
"%DOC%" | |
] | |
}, | |
{ | |
"name": "bibtex", | |
"command": "bibtex", | |
"args": [ | |
"%DOCFILE%" | |
] | |
} | |
], | |
"latex-workshop.view.pdf.viewer": "tab", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment