Texlive: https://tug.org/texlive/windows.html#install Der install dauert ewig. Also literally Stunden!
VSCode Plugin: https://marketplace.visualstudio.com/items?itemName=James-Yu.latex-workshop
In VSCode oben rechts den Preview Button drücken.
"latex-workshop.latex.outDir": "auxiliary",
"latex-workshop.latex.tools": [
{
"name": "latexmk",
"command": "latexmk",
"args": [
"--shell-escape",
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"-outdir=%OUTDIR%",
"%DOC%"
]
},
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"--shell-escape",
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
]
},
{
"name": "bibtex",
"command": "bibtex",
"args": [
"%DOCFILE%"
]
}
],