From c6e0be9146470a4426e51c63183c8a8c0082d0bd Mon Sep 17 00:00:00 2001 From: koksnuss Date: Tue, 25 Jun 2019 14:50:00 +0200 Subject: [PATCH] add note to clearify that bober backend is default, simplyfy inclusion of .bib ressource --- README.md | 16 ++++++++++++---- references.tex | 5 +++-- 2 files changed, 15 insertions(+), 6 deletions(-) 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