| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%% 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{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 {HVA}\\
- \end{center}
- %------------------ NAMES ----------------------
- \vfill
- \begin{flushright}
- \begin{tabular}{ll}
- Joost Sijm\\
- \today\\
- HVA, IS110
- \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{Hoogeschool van Amsterdam}}
- \fancyfoot[R]{\small \rm \textit{Joost Sijm}}
- \renewcommand{\sectionmark}[1]{\markright{\thesection.\ #1}}
- \renewcommand{\headrulewidth}{0.5pt}
- \renewcommand{\footrulewidth}{0.5pt}
- %================== 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}
|