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