Advertisement
Sax

LaTeX Workshop Recipes

Sax
Feb 10th, 2019
365
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.94 KB | None | 0 0
  1. "latex-workshop.latex.tools": [
  2.         {
  3.             "name": "latexmk",
  4.             "command": "latexmk",
  5.             "args": [
  6.               "-synctex=1",
  7.               "-interaction=nonstopmode",
  8.               "-file-line-error",
  9.               "-pdf",
  10.               "%DOC%"
  11.             ]
  12.           },
  13.         {
  14.             "name": "pdflatex",
  15.             "command": "pdflatex",
  16.             "args": [
  17.               "-synctex=1",
  18.               "-interaction=nonstopmode",
  19.               "-file-line-error",
  20.               "%DOC%"
  21.             ]
  22.         },
  23.         {
  24.             "name": "bibtex",
  25.             "command": "bibtex",
  26.             "args": [
  27.               "%DOCFILE%"
  28.             ]
  29.         },
  30.         {
  31.             "name": "xelatex",
  32.             "command": "xelatex",
  33.             "args": [
  34.                 "-synctex=1",
  35.                 "-interaction=nonstopmode",
  36.                 "-file-line-error",
  37.                 "%DOC%"
  38.             ]
  39.         },
  40.         {
  41.             "name": "splitindexDiary",
  42.             "command": "splitindex",
  43.             "args": [
  44.               "master.idx"
  45.             ]
  46.         }
  47.     ],
  48.     "latex-workshop.latex.recipes": [
  49.         {
  50.           "name": "latexmk",
  51.           "tools": [
  52.             "latexmk"
  53.           ]
  54.         },
  55.         {
  56.           "name": "pdflatex -> bibtex -> pdflatex*2",
  57.           "tools": [
  58.             "pdflatex",
  59.             "bibtex",
  60.             "pdflatex",
  61.             "pdflatex"
  62.           ]
  63.         },
  64.         {
  65.           "name": "Diary",
  66.           "tools": [
  67.             "pdflatex",
  68.             "bibtex",
  69.             "splitindexDiary",
  70.             "pdflatex",
  71.             "pdflatex"
  72.           ]
  73.         },
  74.         {
  75.             "name": "xetex -> bibtex -> xetex -> pdflatex",
  76.             "tools": [
  77.                 "xelatex",
  78.                 "bibtex",
  79.                 "xelatex",
  80.                 "xelatex"
  81.             ]
  82.         }
  83.       ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement