Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- "latex-workshop.latex.tools": [
- {
- "name": "latexmk",
- "command": "latexmk",
- "args": [
- "-synctex=1",
- "-interaction=nonstopmode",
- "-file-line-error",
- "-pdf",
- "%DOC%"
- ]
- },
- {
- "name": "pdflatex",
- "command": "pdflatex",
- "args": [
- "-synctex=1",
- "-interaction=nonstopmode",
- "-file-line-error",
- "%DOC%"
- ]
- },
- {
- "name": "bibtex",
- "command": "bibtex",
- "args": [
- "%DOCFILE%"
- ]
- },
- {
- "name": "xelatex",
- "command": "xelatex",
- "args": [
- "-synctex=1",
- "-interaction=nonstopmode",
- "-file-line-error",
- "%DOC%"
- ]
- },
- {
- "name": "splitindexDiary",
- "command": "splitindex",
- "args": [
- "master.idx"
- ]
- }
- ],
- "latex-workshop.latex.recipes": [
- {
- "name": "latexmk",
- "tools": [
- "latexmk"
- ]
- },
- {
- "name": "pdflatex -> bibtex -> pdflatex*2",
- "tools": [
- "pdflatex",
- "bibtex",
- "pdflatex",
- "pdflatex"
- ]
- },
- {
- "name": "Diary",
- "tools": [
- "pdflatex",
- "bibtex",
- "splitindexDiary",
- "pdflatex",
- "pdflatex"
- ]
- },
- {
- "name": "xetex -> bibtex -> xetex -> pdflatex",
- "tools": [
- "xelatex",
- "bibtex",
- "xelatex",
- "xelatex"
- ]
- }
- ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement