Skip to content
Snippets Groups Projects
Commit 8928e229 authored by Jan Wille's avatar Jan Wille
Browse files

bibliography loading explained

parent 1789cee4
Branches
No related tags found
No related merge requests found
...@@ -45,10 +45,19 @@ ...@@ -45,10 +45,19 @@
\usepackage{lipsum} % dummy text \usepackage{lipsum} % dummy text
% bibliography % # bibliography
% include biblatex, if you want to use it: % While you can just create a super simple bibliography directly in your documents and format it completely yourself (see <https://en.wikibooks.org/wiki/LaTeX/Bibliography_Management#Embedded_system>)
% \usepackage{biblatex} % coment this in to use biber % it is far more manageable and consistent to use a system called BibTeX, which allows you to maintain a file of all your sources and takes care of all
\usepackage[backend=bibtex]{biblatex} % biber is recommended as a backend, but for simplicity it is changed here back to standart bibtex: % the formatting for you. It also figures out which sources you use in your documents and only prints these, allowing for a single bibliography file
% you can use on multiple/all your projects. You can also create bibliographies on a chapter basis, if you prefer.
% To use it, just load the according package in your preamble, as shown below.
% Be aware that you need to run a separate program (`bibtex' or`biber') on your latex file for your citations to be rendered. But you usually don't
% need to run that every time.
% Also while this example is set up to use `bibtex' (because it is the default in loats of editors), the defaul for this project is the more modern
% `biber' command, so you need to change your editor accordingly if you omit the `backend=bibtex' option below:
\usepackage[backend=bibtex]{biblatex}
% now we load our bibliography file. Open it to see what it looks like
\addbibresource{bib/localBibliography.bib} \addbibresource{bib/localBibliography.bib}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment