1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%% LATEX REPORT TEMPLATE
- %%%%
- %%%% Author : Joost Sijm
- %%%% Contact : mail@joostsijm.nl
- %%%% Version : 1.0
- %%%%
- %%%% Notes : This code is delivered as is,
- %%%% and without any warranty.
- %%%% Feel free to modify and share.
- %%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- \input{docs/preamble}
- \begin{document}
- % --------------- COVER PAGE -------------------
- \newpage
- \pagestyle{fancy}
- \fancyhf{}
- %------------------ HEAD -----------------------
- %\fancyhead[L]{ \includegraphics[scale=0.9]{figs/logo.pdf} }
- %------------------ TITLE ----------------------
- \vspace*{6cm}
- \begin{center}
- \Huge {Big Title}\\
- \vspace{1cm}
- \huge {Middle Title}\\
- \vspace{1cm}
- \small {Small Title} \\
- \end{center}
- %------------------ NAMES ----------------------
- \vfill
- \begin{flushright}
- \begin{tabular}{ll}
- Author: & Name Lastname\\
- & \today\\
- & City, Country.
- \end{tabular}
- \end{flushright}
- %------------- HEADER - FOOTER -----------------
- \newpage
- \pagestyle{fancy}
- \fancyhf{}
- %HEADER
- \fancyhead[L]{\small \rm \textit{Section \rightmark}}
- \fancyhead[R]{\small \rm \textbf{\thepage}}
- %FOOTER
- \fancyfoot[L]{\small \rm \textit{Footer - Left}}
- \fancyfoot[R]{\small \rm \textit{Footer - Right}}
- \renewcommand{\sectionmark}[1]{\markright{\thesection.\ #1}}
- \renewcommand{\headrulewidth}{0.5pt}
- \renewcommand{\footrulewidth}{0.5pt}
- %================== INDEX ======================
- \tableofcontents
- %\listoffigures
- % ================ DOCUMENT ====================
- \newpage
- \input{docs/document}
|