...
Don't forget to configure Hunspell for SpellRight, otherwise spell checking will not work.
You will need to manually configure the LaTeX toolchain. You can use the existing projects as a reference, or you could base your configuration on the following snippet:
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
"latex-workshop.latex.recipes": [
{
"name": "pdflatex x3",
"tools": [
"pdflatex",
"pdflatex",
"pdflatex"
]
}
],
"latex-workshop.latex.tools": [
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"--halt-on-error",
"--shell-escape",
"%DOC%"
]
},
{
"name": "bibtex",
"command": "bibtex",
"args": [
"%DOCFILE%"
]
}
] |
Manual compilation
The following script is an example showing how LaTeX documents can be compiled manually without an IDE. Note that the invoked commands largely depend on what particular distribution of LaTeX is used.
...