https://github.com/clashsoft/doctor-thesis
LaTeX code for my PhD thesis
https://github.com/clashsoft/doctor-thesis
Last synced: 3 months ago
JSON representation
LaTeX code for my PhD thesis
- Host: GitHub
- URL: https://github.com/clashsoft/doctor-thesis
- Owner: Clashsoft
- Created: 2023-06-26T19:16:10.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-21T08:51:35.000Z (over 2 years ago)
- Last Synced: 2025-10-25T23:41:33.343Z (8 months ago)
- Language: TeX
- Homepage:
- Size: 64.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vorlage für Dokumentation und Abschlussarbeiten
## Installation
1. [TeX Live](https://www.tug.org/texlive/) installieren
2. Die Packages aus packages.txt müssen zunächst installiert werden. Dazu kann folgender Befehl verwendet werden:
```sh
# Linux/macOS
$ xargs tlmgr install < packages.txt
# Windows (cmd)
> for /F %i in (packages.txt) do tlmgr install %i
# Windows (PowerShell)
PS> Get-Content packages.txt | ForEach-Object { tlmgr install $_ }
```
Bei macOS muss evtl. `sudo` und bei Windows `Als Administrator ausführen` verwendet werden.
3. Für die Darstellung von Code wird das "minted"-Package verwendet. Damit dies kompiliert muss folgendes erledigt werden:
https://alipourmousavi.com/blog/index.php/2018/02/08/using-minted-package-in-latex-to-format-codes/
### Visual Studio Code + TeX Live
- Erweiterung für VSCode: [LaTex-Workshop](https://github.com/James-Yu/LaTeX-Workshop/wiki)
### IntelliJ + MiKTex
- Plugin für IntelliJ: [TeXiFy IDEA](https://plugins.jetbrains.com/plugin/9473-texify-idea)
- Weitere Schritte die nötig sind für das Plugin: https://github.com/Hannah-Sten/TeXiFy-IDEA/wiki/Installation