Created
December 1, 2025 11:51
-
-
Save masterdesky/7cb4e35c51a0b4340a7d8278751e6e06 to your computer and use it in GitHub Desktop.
LaTeX workshop settings for VSCode with biber and bibtex support
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "latex-workshop.latex.tools": [ | |
| { | |
| "name": "pdflatex", | |
| "command": "pdflatex", | |
| "args": [ | |
| "-synctex=1", | |
| "-interaction=nonstopmode", | |
| "-file-line-error", | |
| "%DOC%" | |
| ] | |
| }, | |
| { | |
| "name": "biber", | |
| "command": "biber", | |
| "args": [ | |
| "%DOCFILE%" | |
| ] | |
| }, | |
| { | |
| "name": "bibtex", | |
| "command": "bibtex", | |
| "args": [ | |
| "%DOCFILE%" | |
| ] | |
| } | |
| ], | |
| "latex-workshop.latex.recipes": [ | |
| { | |
| "name": "pdflatex", | |
| "tools": [ | |
| "pdflatex" | |
| ] | |
| }, | |
| { | |
| "name": "pdflatex->biber->pdflatex*2", | |
| "tools": [ | |
| "pdflatex", | |
| "biber", | |
| "pdflatex", | |
| "pdflatex" | |
| ] | |
| }, | |
| { | |
| "name": "pdflatex->bibtex->pdflatex*2", | |
| "tools": [ | |
| "pdflatex", | |
| "bibtex", | |
| "pdflatex", | |
| "pdflatex" | |
| ] | |
| } | |
| ], |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment