Auto Build: Run uses incorrent recipe #3271
Unanswered
spacemonqi
asked this question in
Q&A
Replies: 1 comment
-
Please post the complete logs of the extension starting from |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Auto Build: Run states that:
When the extension shall auto build LaTeX project using the default (first) recipe.
onSave
builds the project upon saving a tex file in vscode.onFileChange
builds the project upon detecting a file change in any of the dependencies, even modified by other applications.However, even when I remove all recipes except for the following:
"latex-workshop.latex.recipes": [
{
"name": "pdflatex ➞ bibtex ➞ pdflatex × 2",
"tools": [
"pdflatex",
"bibtex",
"pdflatex",
"pdflatex"
]
},
]
Saving / Changing the file still runs pdflatex without bibtex, resulting in citations not being loaded.
Any help would be much appreciated.
Beta Was this translation helpful? Give feedback.
All reactions