2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-18 19:18:21 +02:00

seminar-paper: Added

This commit is contained in:
Martin Thoma 2019-12-27 18:06:18 +01:00
parent e26d2ba4fa
commit 8b03d29e5e
No known key found for this signature in database
GPG key ID: 94DD4FD95F98B113
3 changed files with 54 additions and 0 deletions

View file

@ -0,0 +1,10 @@
DOKUMENT = main
make:
pdflatex $(DOKUMENT).tex -output-format=pdf
biber $(DOKUMENT)
pdflatex $(DOKUMENT).tex -output-format=pdf
make clean
clean:
rm -rf $(TARGET) *.class *.html *.log *.aux *.out *.thm *.idx *.toc

View file

@ -0,0 +1,18 @@
% Encoding: UTF-8
@article{alice,
title={The Theory of Lorem},
author={Al Alice},
journal={Journal of Foo},
volume={5},
number={4},
pages={123--456},
year={1992},
publisher={Springer}
}
@Book{bob,
title = {A guide to Ipsum},
publisher = {Cambridge university press},
year = {2010},
author = {Bobby Bob},
}

View file

@ -0,0 +1,26 @@
\documentclass[a4paper,12pt]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[raiselinks=true,
bookmarks=true,
bookmarksopenlevel=1,
bookmarksopen=true,
bookmarksnumbered=true,
breaklinks,
hyperindex=true,
plainpages=false,
pdfpagelabels=true,
pdfborder={0 0 0.5}]{hyperref}
\usepackage[
natbib,
backend=biber,
style=alphabetic,
citestyle=authoryear
]{biblatex}
\addbibresource{bibliography.bib}
\begin{document}
Reference sentences are too often Lorem Ipsum \parencites[p. 345]{alice}[p. 123]{bob}
\end{document}