2022-05-19 12:15:37 +02:00
|
|
|
# LaTeX-Praxisbericht template
|
2022-05-19 09:11:50 +02:00
|
|
|
> Note: When a path in this readme begins with `/`, it is relative to the project root.
|
|
|
|
|
2022-05-19 12:15:37 +02:00
|
|
|
This is a starting point to write a Praxisbericht according to the University of applied Sciences, Worms's guidelines.
|
2022-05-19 12:17:03 +02:00
|
|
|
When first starting out, your very first step should be to get it to compile.
|
2022-05-19 12:15:37 +02:00
|
|
|
Once it does, adjust `/config.tex` to fit your specific environment (your name, your partner business, etc... just a bunch of variables).
|
|
|
|
Then, go through the files in `/chapters`, and put in your own redactory work.
|
|
|
|
|
|
|
|
## Dependencies
|
|
|
|
* node.js
|
|
|
|
* pageres-cli (installed via npm)
|
|
|
|
* texlive-full
|
|
|
|
* bibtex
|
|
|
|
* make
|
2022-05-19 09:11:50 +02:00
|
|
|
|
|
|
|
## To build the document:
|
|
|
|
1) `make`
|
|
|
|
|
|
|
|
|
|
|
|
## Nomenclature
|
|
|
|
* All your text should go into `/chapters/`.
|
|
|
|
* All your indices, such as acronyms, references, glossary entrys, if not generated automatically, should go into `/dexes/`
|
2022-05-20 11:31:58 +02:00
|
|
|
* All your appendix pages should go into `/appendix/`
|
2022-05-19 12:15:37 +02:00
|
|
|
See example files in these directories...
|
2022-05-20 11:31:58 +02:00
|
|
|
The glossary and acronym dex are disabled by default. They can be re-activated in `/main.tex`.
|
2022-05-19 09:11:50 +02:00
|
|
|
|
|
|
|
## Literature
|
|
|
|
Literature goes in `/dexes/literature.bib`. See examples in this file.
|
|
|
|
|
|
|
|
## LaTeX syntax
|
2022-05-19 12:15:37 +02:00
|
|
|
You'll find a basic LaTeX cheat sheet in`/latex-cheat-sheet.tex`.
|
2022-05-19 09:11:50 +02:00
|
|
|
|
2022-05-20 11:31:58 +02:00
|
|
|
## Studienübersicht-table
|
|
|
|
You can configure your studienübersicht-table (the colorful one, showing all your modules) in `/studienuebersicht/table.html`.
|
2022-05-19 12:15:37 +02:00
|
|
|
You can render it via `make uebersicht-table`, but it should generate automatically, when just running `make`.
|
2022-05-19 09:11:50 +02:00
|
|
|
|
|
|
|
# Other stuff worth noting
|
2022-05-20 11:31:58 +02:00
|
|
|
* All paths (like, when referencing an image, or including a `.tex` file) must always be relative to project root! (where the Makefile lies).
|
2022-05-19 09:11:50 +02:00
|
|
|
* Configure your projects base informations such as title, author, year, etc in `/config.tex`.
|
|
|
|
* When creating new chapters (files in `/chapters/`), you have to include them in `/chapters.tex`.
|
|
|
|
* When creating new appendix entries (files in `/appendix/`), you have to include them in `/appendix.tex`.
|
2022-05-20 11:31:58 +02:00
|
|
|
* If you have any technical questions regarding this, feel free to [email me](https://www.leonetienne.de/contact.html).
|
2022-05-19 12:15:37 +02:00
|
|
|
|