diff --git a/settings.json b/settings.json new file mode 100644 index 0000000..fce2e73 --- /dev/null +++ b/settings.json @@ -0,0 +1,90 @@ +{ + "latex-workshop.latex.recipes": [{ + "name": "xelatex", + "tools": [ + "xelatex" + ] + }, { + "name": "latexmk", + "tools": [ + "latexmk" + ] + }, + + { + "name": "pdflatex -> bibtex -> pdflatex*2", + "tools": [ + "pdflatex", + "bibtex", + "pdflatex", + "pdflatex" + ] + } + { + "name": "BIT_thesis", + "tools": [ + "xelatex", + "bibtex", + "xelatex", + "xelatex" + ] + } + ], + "latex-workshop.latex.tools": [{ + "name": "latexmk", + "command": "latexmk", + "args": [ + "-synctex=1", + "-interaction=nonstopmode", + "-file-line-error", + "-pdf", + "%DOC%" + ] + }, { + "name": "xelatex", + "command": "xelatex", + "args": [ + "-synctex=1", + "-interaction=nonstopmode", + "-file-line-error", + "%DOC%" + ] + }, { + "name": "pdflatex", + "command": "pdflatex", + "args": [ + "-synctex=1", + "-interaction=nonstopmode", + "-file-line-error", + "%DOC%" + ] + }, { + "name": "bibtex", + "command": "bibtex", + "args": [ + "%DOCFILE%" + ] + }], + "latex-workshop.view.pdf.viewer": "tab", + "latex-workshop.latex.clean.fileTypes": [ + "*.aux", + "*.bbl", + "*.blg", + "*.idx", + "*.ind", + "*.lof", + "*.lot", + "*.out", + "*.toc", + "*.acn", + "*.acr", + "*.alg", + "*.glg", + "*.glo", + "*.gls", + "*.ist", + "*.fls", + "*.log", + "*.fdb_latexmk" + ], + } \ No newline at end of file