20 lines
445 B
Markdown
20 lines
445 B
Markdown
Latex master template
|
|
|
|
# Setup
|
|
```sh
|
|
mkdir $report
|
|
cd $report
|
|
git clone https://willipink.eu/git/moritz/texmaster.git
|
|
cp texmaster/master.tex $report.tex
|
|
touch references.bib
|
|
vim $report.tex
|
|
```
|
|
|
|
# Folder structure
|
|
```
|
|
$report # <-- the folder of the $report
|
|
$report/$report.tex # <-- the actual .tex file
|
|
$report/references.bib # <-- bibliography file
|
|
$report/texmaster/ # <-- this is the git repo
|
|
```
|