This is the main master thesis report associated with strahl
.
To compile the report, follow these steps:
- Install LaTeX distribution (e.g., TeX Live, MiKTeX).
- Open
main.tex
in your LaTeX editor. - Compile the document using the appropriate LaTeX command.
- The compiled report will be generated as
main.pdf
.
No manual publishing or building is required as the report is automatically built using GitHub Actions. This ensures that automatic control of the report is done and makes distribution of the report straightforward.
The LaTeX Workshop Extension for Visual Studio Code is recommended for development.
The build command can be configured in the settings for the key latex-workshop.latex.tools
as:
{
"name": "latexmk",
"command": "latexmk",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"-pdflatex=pdflatex -shell-escape %O %S",
"-outdir=%OUTDIR%",
"%DOC%"
]
},
Note the use of -shell-escape
which is required for \tikzexternalize
.