The template is made to be used with the DevContainer, to do so, open the project in Visual Studio Code and click the "Reopen in Container" button that appears in the bottom right corner of the window.
You can add new packages in two ways:
When inside the devcontainer, open the terminal and run the following command:
tlmgr install <package>
First, navigate to devcontainer.json and add the following line to the postCreateCommand
array:
"tlmgr install <package>"
Note that by default, the template installs tex-gyre
so, you should be able to install any other package by just including it after it. For example:
"tlmgr install tex-gyre <package>"
The template is slightly opinionated, but you can change it to fit your needs. In general:
- structure.text contains any packages and config.
- report.tex is the main file.
- pages contains the different sections of the report.
- docs contains the output.
This template uses qmcgaw/latexdevcontainer as a base, please consider supporting them!