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

packages explanation

parent 21d42a32
Branches
No related tags found
No related merge requests found
...@@ -26,13 +26,14 @@ ...@@ -26,13 +26,14 @@
% The `\documentclass' command is actually part of that configuration. Lets see what you could do here: % The `\documentclass' command is actually part of that configuration. Lets see what you could do here:
% bibliography % # packages
% include biblatex, if you want to use it: % To extend LaTeXes basic functionality, you can load additional packages. Some are already loaded, but others you load in as needed.
% \usepackage{biblatex} % coment this in to use biber % Check the README about what's already loaded and what's recommended.
\usepackage[backend=bibtex]{biblatex} % biber is recommended as a backend, but for simplicity it is changed here back to standart bibtex: % Also, this classfiles automaticly check for a file called `config.tex', in which you can collect common configurations and reuse them across
\addbibresource{bib/localBibliography.bib} % files in this and/or multiple projects. If you use the full template from GitLab, it provied a `config.tex' which only applies the settings,
% if the corresponding package is loaded, making it even more reusable.
% a few more useful packages: %
% Here are some packages we are going to need with some explanations:
\usepackage{color} % for colouring stuff \usepackage{color} % for colouring stuff
\usepackage{siunitx} % units \usepackage{siunitx} % units
\usepackage{listings} % including formated code snippets \usepackage{listings} % including formated code snippets
...@@ -43,6 +44,14 @@ ...@@ -43,6 +44,14 @@
\usepackage{enumitem} % more list options \usepackage{enumitem} % more list options
\usepackage{lipsum} % dummy text \usepackage{lipsum} % dummy text
% bibliography
% include biblatex, if you want to use it:
% \usepackage{biblatex} % coment this in to use biber
\usepackage[backend=bibtex]{biblatex} % biber is recommended as a backend, but for simplicity it is changed here back to standart bibtex:
\addbibresource{bib/localBibliography.bib}
% configure your projec specific data: % configure your projec specific data:
\author{ \author{
Max Mustermann, Max Mustermann,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment