XeLaTeX VS Code

From srakrn | Wiki
Revision as of 14:48, 24 August 2020 by Srakrn (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 "latex-workshop.latex.recipes": [
   {
     "name": "xelatex",
     "tools": [
       "xelatex"
     ]
   },
   {
     "name": "xelatex -> bibtex -> xelatex * 2",
     "tools": [
       "xelatex",
       "bibtex",
       "xelatex",
       "xelatex"
     ]
   }
 ],
 "latex-workshop.latex.tools": [
   {
     "name": "xelatex",
     "command": "xelatex",
     "args": [
       "-synctex=1",
       "-interaction=nonstopmode",
       "%DOC%.tex"
     ],
     "env": {}
   },
   {
     "name": "bibtex",
     "command": "bibtex",
     "args": [
       "%DOCFILE%"
     ],
     "env": {}
   }
 ],