Difference between revisions of "XeLaTeX VS Code"

From srakrn | Wiki
Jump to navigation Jump to search
(Created page with "``` "latex-workshop.latex.recipes": [ { "name": "xelatex", "tools": [ "xelatex" ] }, { "name": "xelatex -> bibtex -> xelatex * 2"...")
 
 
Line 1: Line 1:
```
 
 
   "latex-workshop.latex.recipes": [
 
   "latex-workshop.latex.recipes": [
 
     {
 
     {
Line 37: Line 36:
 
     }
 
     }
 
   ],
 
   ],
```
 

Latest revision as of 14:48, 24 August 2020

 "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": {}
   }
 ],