This is a LaTeX template for the bachelor thesis of the MCT course at Howest, Belgium.
- Install LaTeX:
texlive
package group on Linux, or see https://www.tug.org/texlive/ for Windows & macOS. - Install the Pygments package:
pip install Pygments
to make code blocks work properly - Install the LaTeX-Workshop extension in Visual Studio Code
- Add the following to your VSCode settings by opening the JSON settings (
Ctrl+Shift+P
>Preferences: Open Settings (JSON)
):
(I didn't test this JSON on Windows, create an issue if you encounter problems.)
"latex-workshop.latex.recipes": [
{
"name": "latexmk 🔃",
"tools": ["latexmk"]
}
],
"latex-workshop.latex.tools": [
{
"name": "latexmk",
"command": "latexmk",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"-shell-escape",
"-outdir=%OUTDIR%",
"-cd",
"%DOC%"
],
"env": {}
}
]
- Compile your LaTeX document using the green arrow in the top right when the .tex file is opened.