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 ```sh
mkdir $report mkdir $report
cd $report cd $report
git clone https://willipink.eu/git/moritz/texmaster.git git clone https://willipink.eu/git/moritz/texmaster.git
cp texmaster/master.tex $report.tex 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 % references
\usepackage{biblatex} % references % note: biber is the default backend so you will have to configure the biber command like "biber %.bcf" in texstudio
\addbibresource{references/references.bib} \usepackage[backend=biber]{biblatex}
\bibliography{references}