Inhaltsverzeichnis

Latex

Installation

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

Nutzung

In VSCode oben rechts den Preview Button drücken.

Template der DHBW

https://github.com/pfisterer/DHBW_LaTeX_Template

VSCode Settings

"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%"
]
}
],