\documentclass[todos,f1]{HsH-report}

\usepackage{color}
\usepackage{lipsum}
\usepackage{siunitx}
\usepackage{biblatex}
\usepackage{soul}
\addbibresource{bib/localBibliography.bib}

%% documents personal data:
\author{
	Max Mustermann,
	Mira Musterfrau
}
\matrikelnr{
	1234567,
	9876543
}
\titlehead{titlehead}
\subject{Subject}
\title[short title]{long and elaborate title that just goes on and on witout stopping}
\subtitle{Subtitle}
\date{\today}
\professor{Professor}
\keywords{test, baum}


\begin{document}

\pagenumbering{Roman}
\maketitle
\declarationAuthorship

\begin{abstract}
	\lipsum[5-8]
\end{abstract}

\tableofcontents

\cleardoublepage % unbedingt erforderlich bei Doppelseitigem layout vor neuer Seitennummerierung!
\pagenumbering{arabic} % Seitennummerierung normale zahlen

\chapter{very precice chapterheading with a bounch of important information}
	\label{chap: one}
	{\color{red}test} und stuff
	\begin{figure}
		\centering
		\includegraphics[width=.6\textwidth]{img/lorem-ipsum.jpg}
		\caption{test}
	\end{figure}

	title test: \ifx\@shorttitle\@empty\@title\else\@shorttitle\fi

	noch ein test \normalsubscripts$R_t$ \upsubscripts$R_t$

	mit einheit: $R=200\,\mohm+ \SI{0.34567453}{\volt\per\metre}$
	\cite{laboranleitung:physik}
	\vspace{2cm}\\
	eine zahl: $3,5+3.5$\footnote[1]{hello}\\

	Tiny: {\tiny hello} \todo{test} Small: {\small hello}

	\makeatletter
	\newcommand{\test}[1][l]{
		{
			\def\t{#1}
			\if\t l left
			\else
				right
			\fi
		}
	}
	\test; \test[right] \todo{super long todo that mus be going over multiple lines}

	\lipsum[5-6]

	\pagebreak
	\begin{figure}
		\centering
		\includegraphics[width=0.6\textwidth, page=2]{plt/examplePlot.pdf}
		\caption{a nice plot }
	\end{figure}

	test text\todo{why this?}

	\begin{figure}
		\centering
		\includegraphics{crc/exampleCircuit.pdf}
		\caption{a circuit diagramm}
	\end{figure}

	\makeatletter

	\begin{figure}
		\graphicspath{{svg/}} % double curly brackets needet for unknown reason
		\input{svg/exampleSVG.pdf_tex}
		\caption{made via inkscape}
	\end{figure}

	\begin{table}
		\caption{hello}
		\begin{tabular}{c|c}
			test & hello \\\hline\hline
			1 & 2 \\
			\multicolumn{2}{|c|}{temp}
		\end{tabular}
	\end{table}

\printbibliography
\listoffigures
\end{document}