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

bibilographie und declatation of autorship

parent affc496d
Branches
Tags
2 merge requests!6Development,!5Development
# Makefile for Latex project
NAME = test
PDF = pdflatex
BIB = biber
LATEX = pdflatex
BIBTEX = biber
OUTDIR = .\build
export TEXINPUTS:=.\src
all:
$(MAKE) pdf
$(MAKE) bib
$(MAKE) pdf
$(MAKE) pdf
pdf: $(NAME).tex
$(PDF) -synctex=1 -interaction=nonstopmode -file-line-error -include-directory=.\src -output-directory=$(OUTDIR) $(NAME).tex
$(LATEX) -synctex=1 -interaction=nonstopmode -file-line-error -include-directory=.\src -output-directory=$(OUTDIR) $(NAME).tex
move $(OUTDIR)\$(NAME).pdf .\
bib: $(OUTDIR)\$(NAME).bcf
$(BIBTEX) -output-directory $(OUTDIR) $(NAME)
clean: tidy
if exist $(OUTDIR)\$(NAME).pdf del $(OUTDIR)\$(NAME).pdf
......
......@@ -53,6 +53,7 @@
\PassOptionsToPackage{utf8}{inputenc}
\PassOptionsToPackage{T1}{fontenc}
\PassOptionsToPackage{left=3cm,right=2.5cm,top=3cm,bottom=3cm}{geometry}
\PassOptionsToPackage{backend=biber,style=alphabetic,sorting=nyt}{biblatex}
\PassOptionsToPackage{babel, german=quotes}{csquotes}
\PassOptionsToPackage{headsepline}{scrlayer-scrpage}
\PassOptionsToPackage{free-standing-units}{siunitx}
......@@ -86,6 +87,7 @@
\ihead{\@title}
\ofoot*{\pagemark}
% typesetting indexes upright or standart
\def\subinrm#1{\sb{\textnormal{#1}}}
{\catcode`\_=13 \global\let_=\subinrm}
......@@ -106,7 +108,7 @@
{\rule{\textwidth}{0.1pt}}
\vspace{0.5cm}
\renewcommand{\thanks}{\empty}
\renewcommand{\thanks}{\sbox0}
\newcommand{\tempA}{ich}
\newcommand{\tempB}{}
\foreach \x [count=\i] in \@author{
......
\renewcaptionname{ngerman}{\abstractname}{Abstract} %Abstract
\@ifpackageloaded{biblatex}{
\ExecuteBibliographyOptions{
sorting=nyt,
bibwarn=true,
isbn=false,
url=true
url=false
}
}{}%
\@ifpackageloaded{csquotes}{
......
No preview for this file type
......@@ -3,9 +3,13 @@
\usepackage{color}
\usepackage{lipsum}
\usepackage{siunitx}
\usepackage{biblatex}
\addbibresource{src/localBibliography.bib}
\begin{document}
\pagenumbering{Roman}
\maketitle
\declarationAuthorship
......@@ -31,9 +35,10 @@
noch ein test \normalsubscripts$R_t$ \upsubscripts$R_t$
mit einheit: $R=200\,\milli\ohm+ \SI{0.34567453}{\volt\per\metre}$
\cite{laboranleitung:physik}
\vspace{2cm}\\\pagebreak
eine zahl: $3,5+3.5$\\
\printbibliography
\listoffigures
\end{document}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment