\documentclass[a4paper, 11pt]{article} % Paper and font size
\usepackage[german]{babel} % Language setting
\usepackage[style=authoryear-ibid,backend=biber]{biblatex}
\addbibresource{bibliography.bib}
% Customize your title, name, place and date here to change title, header, footer, etc.
\newcommand{\titlefirstpage}{Seminararbeit -- Sinologie (inoffiziell)}
\newcommand{\titleheaderline}{\titlefirstpage{}}
\newcommand{\authorname}{Cao Cao}
\newcommand{\authormail}{cao.cao@univie.ac.at}
\newcommand{\authormatrno}{12345678}
\newcommand{\authordate}{\today{}}
\newcommand{\authorplace}{Wien}
% Set margins
\usepackage[top=2.5cm,bottom=2.5cm,left=2cm,right=2cm,marginparwidth=1.75cm]{geometry}
% Load useful packages
\usepackage{graphicx} % Graphics
\usepackage{amsmath} % Math
\usepackage{xcolor} % Link color
\definecolor{custom-blue}{RGB}{0,99,166}
\usepackage{hyperref}
\hypersetup{colorlinks=true, allcolors=custom-blue}
\usepackage[default]{sourcesanspro} % Load font
\usepackage[T1]{fontenc} % Special characters
\usepackage{fancyhdr} % Load header, footer package
\usepackage{csquotes} % textcite, parencite, etc.
\usepackage{lastpage} % Footer note
\usepackage{lipsum} % For dummy text
\usepackage[ % \say for quotation marks
% configure to use german-style quotes
left = \glqq,%
right = \grqq,%
leftsub = \glq,%
rightsub = \grq%
]{dirtytalk}
\pagestyle{myheadings} % Own header
\pagestyle{fancy} % Own style
\fancyhf{} % Clear header, footer
\setlength{\headheight}{30pt} % Set header hight
\renewcommand{\headrulewidth}{0.5pt} % Top line
\renewcommand{\footrulewidth}{0.5pt} % Bottom line
\fancyhead[L]{\includegraphics[width=3cm]{univienna-logo.eps}} % Header left
\fancyhead[C]{} % Header center
\fancyhead[R]{\titleheaderline} % Header right
\fancyfoot[L]{\authorname} % Footer left
\fancyfoot[C]{ % Footer center
\thepage
% uncomment next line also include the total page count
% /\pageref{LastPage}
}
\fancyfoot[R]{\authormatrno} % Footer right
%%% Begin document %%%
\begin{document}
\begin{figure} % Include Logo
\flushleft
\includegraphics[width=0.4\textwidth]{univienna-logo.eps}
\end{figure}
% Set title, author, date
\title{\titlefirstpage{}}
\author{\authorname{} -- \authormatrno{} -- \authormail{}}
\date{\authordate, \authorplace}
\maketitle % Include contents
\tableofcontents
\section{Template} % Example sections, subsections
\subsection{References} % Example citations
Häuser schützen vor Hitze, Regen, Räubern und Dieben \parencite{MoDi1975GdK}.
\textcite{MoDi1975GdK} erklärt im Weiteren die Ähnlichkeiten zwischen Kriminalität und Kriegsführung.
\subsection{Schrift} % Example fonts
Hier {\huge sehr groß} und in {\footnotesize Fußnotengröße}.
Mit Befehlen kann der \texttt{ Stil in einem Satz geändert werden}.
\lipsum[1-1]
\subsection{Mathematik}
\[S_n = \frac{X_1 + X_2 + \cdots + X_n}{n}
= \frac{1}{n}\sum_{i}^{n} X_i\]
\subsection{Tabellen} % Example tables
\begin{center}
\begin{tabular}{ |c|c|c| }
\hline
Cell 1 & Cell 2 & Cell 3 \\
Cell 4 & Cell 5 & Cell 6 \\
Cell 7 & Cell 8 & Cell 9 \\
\hline
\end{tabular}
\end{center}
\subsection{Fußnoten} % Example footnote
Dieser Text ist ohne Kontext nicht sehr verständlich\footnote{Daher gibt es hier eine Fußnote zur näheren Erklärung.}.
\lipsum[1-1]
\subsection{Weblinks} % Example lists
Ein Link zur \hyperlink{https://www.univie.ac.at}{Webseite der Universität Wien}.
\lipsum[1-1]
Sie können natürlich auch Text in:
\begin{enumerate}
\item geordneten Listen oder,
\item ungeordneten Listen arrangieren.
\end{enumerate}
Ungeordnete Listen sind so etwas:
\begin{itemize}
\item Eintrag 1,
\item Eintrag 2.
\end{itemize}
\lipsum[1-1]
\printbibliography[heading=bibintoc]
%%% End document %%%
\end{document}