ZhangXuanxi / Vscode-LaTex-config

Fast Guide and Configuration Information for Compiling LaTeX with VSCode
9 stars 2 forks source link

mac iCloud directory issue fixed #1

Closed Hanchao-Zhang closed 11 months ago

Hanchao-Zhang commented 11 months ago

For mac users who's working on icloud directories, simply change %DOC% to %DOCFILE% will prevent the issue.

Copy paste the following to setting jason

"latex-workshop.latex.tools": [ { "name": "latexmk", "command": "latexmk", "args": [ "-synctex=1", "-interaction=nonstopmode", "-file-line-error", "-pdf", "-outdir=%OUTDIR%", "%DOCFILE%" ], "env": {} }, { "name": "xelatex", "command": "xelatex", "args": [ "-synctex=1", "-interaction=nonstopmode", "-file-line-error", "%DOCFILE%" ], "env": {} }, { "name": "pdflatex", "command": "pdflatex", "args": [ "-synctex=1", "-interaction=nonstopmode", "-file-line-error", "%DOCFILE%" ], "env": {} }, { "name": "bibtex", "command": "bibtex", "args": [ "%DOCFILE%" ], "env": {} } ], "latex-workshop.latex.recipes": [ { "name": "pdfLaTeX", "tools": [ "pdflatex" ] }, { "name": "latexmk 🔃", "tools": [ "latexmk" ] }, { "name": "xelatex", "tools": [ "xelatex" ] }, { "name": "pdflatex ➞ bibtex ➞ pdflatex×2", "tools": [ "pdflatex", "bibtex", "pdflatex", "pdflatex" ] }, { "name": "xelatex ➞ bibtex ➞ xelatex×2", "tools": [ "xelatex", "bibtex", "xelatex", "xelatex" ] } ], "latex-workshop.latex.autoBuild.run": "onSave", "latex-workshop.latex.recipe.default": "lastUsed", "latex-workshop.latex.clean.fileTypes": [ ".bbl", ".blg", ".idx", ".ind", ".lof", ".lot", ".out", ".toc", ".acn", ".acr", ".alg", ".glg", ".glo", ".gls", ".fls", ".log", ".fdb_latexmk", ".snm", ".synctex(busy)", ".synctex.gz(busy)", ".nav", ".vrb" ], "latex-workshop.latex.autoClean.run": "onSucceeded", "latex-workshop.view.pdf.viewer": "tab", "audioCues.lineHasBreakpoint": "off", "audioCues.lineHasError": "off", "audioCues.lineHasFoldedArea": "off", "audioCues.lineHasInlineSuggestion": "off", "audioCues.noInlayHints": "off", "audioCues.onDebugBreak": "off", "latex-workshop.latex.clean.fileTypes": [ ".aux", ".bbl", ".blg", ".idx", ".ind", ".lof", ".lot", ".out", ".toc", ".acn", ".acr", ".alg", ".glg", ".glo", ".gls", ".fls", ".log", ".fdb_latexmk", ".snm", ".synctex(busy)", ".synctex.gz(busy)", ".nav", "*.vrb", ".synctex.gz", ".synctex" ],

ZhangXuanxi commented 11 months ago

Thank you very much!