12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%% HVA LATEX REPORT TEMPLATE
- %%%%
- %%%% Author : Joost Sijm
- %%%% Contact : mail@joostsijm.nl
- %%%% Version : 1.1.1
- %%%%
- %%%% Notes : This code is delivered as is,
- %%%% and without any warranty.
- %%%% Feel free to modify and share.
- %%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- \input{preamble}
- \begin{document}
- %------------------- META ----------------------
- \title{Example}
- \author{Joost Sijm}
- \date{\today}
- %================ COVER PAGE ===================
- \newpage
- \pagestyle{fancy}
- %------------------ TITLE ----------------------
- \makeatletter
- \begin{titlepage}
- \vspace*{5cm}
- \begin{center}
- \Huge{\@title}\\
- \vspace{1cm}
- \huge {Middle Title}\\
- \vspace{1cm}
- \small {Hogeschool van Amsterdam}\\
- \end{center}
- %------------------ NAMES ----------------------
- \vfill
- \begin{flushright}
- \@author\\
- \@date\\
- HVA, IS110
- \end{flushright}
- \end{titlepage}
- %============= HEADER & FOOTER =================
- \newpage
- \pagestyle{fancy}
- \fancyhf{}
- %HEADER
- \fancyhead[L]{\small \rm \textit{\rightmark}}
- \fancyhead[R]{\small \rm \textbf{\thepage}}
- %FOOTER
- \fancyfoot[L]{\small \rm \textit{\@title}}
- \fancyfoot[R]{\small \rm \textit{Joost Sijm – HVA}}
- \renewcommand{\sectionmark}[1]{\markright{\thesection.\ #1}}
- \renewcommand{\headrulewidth}{0.5pt}
- \renewcommand{\footrulewidth}{0.5pt}
- \makeatother
- %================== INDEX ======================
- \tableofcontents
- % \listoffigures
- %================= DOCUMENT ====================
- \newpage
- \input{docs/document}
- %================ References ===================
- %\newpage
- %\begin{thebibliography}{5}
- % \bibitem{cmos} R. Jacob Baker, \textit{CMOS. Circuit Design, Layout, and Simulation}, 2nd ed., USA: IEEE Press, 2005
- %\end{thebibliography}
- %
- %============== End of Document ================
- \end{document}
|