add note to clearify that bober backend is default, simplyfy inclusion of .bib ressource

This commit is contained in:
koksnuss 2019-06-25 14:50:00 +02:00
parent d427b72f4d
commit c6e0be9146
2 changed files with 15 additions and 6 deletions

View File

@ -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
```

View File

@ -1,3 +1,4 @@
% references
\usepackage{biblatex} % references
\addbibresource{references/references.bib}
% 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}