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:
parent
e26d2ba4fa
commit
8b03d29e5e
3 changed files with 54 additions and 0 deletions
10
documents/seminar-paper/Makefile
Normal file
10
documents/seminar-paper/Makefile
Normal 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
|
18
documents/seminar-paper/bibliography.bib
Normal file
18
documents/seminar-paper/bibliography.bib
Normal 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},
|
||||
}
|
26
documents/seminar-paper/main.tex
Normal file
26
documents/seminar-paper/main.tex
Normal 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}
|
Loading…
Add table
Add a link
Reference in a new issue