Skip to content
Snippets Groups Projects
Select Git revision
  • 930505bbb70abc9677d0496d58156bbbbb675b07
  • Praxisbericht default protected
2 results

test.tex

Blame
  • test.tex 2.04 KiB
    \documentclass[twoside,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{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}
    
    	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} Small: {\small hello}
    
    	\makeatletter
    	\newcommand{\test}[1][l]{
    		{
    			\def\t{#1}
    			\if\t l left
    			\else
    				right
    			\fi
    		}
    	}