Skip to content

Instantly share code, notes, and snippets.

@masterdesky
Created December 1, 2025 11:51
Show Gist options
  • Select an option

  • Save masterdesky/7cb4e35c51a0b4340a7d8278751e6e06 to your computer and use it in GitHub Desktop.

Select an option

Save masterdesky/7cb4e35c51a0b4340a7d8278751e6e06 to your computer and use it in GitHub Desktop.
LaTeX workshop settings for VSCode with biber and bibtex support
"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