diff --git a/README.md b/README.md index 901efd0..f75b2dc 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,19 @@ -# texmaster - -Latex master template. +Latex master template +# Setup ```sh mkdir $report cd $report git clone https://willipink.eu/git/moritz/texmaster.git cp texmaster/master.tex $report.tex -v 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 ``` diff --git a/references.tex b/references.tex index 66aca7d..670b8f0 100644 --- a/references.tex +++ b/references.tex @@ -1,3 +1,4 @@ % references -\usepackage{biblatex} % references - \addbibresource{references/references.bib} \ No newline at end of file +% note: biber is the default backend so you will have to configure the biber command like "biber %.bcf" in texstudio +\usepackage[backend=biber]{biblatex} +\bibliography{references} \ No newline at end of file