master.tex 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  2. %%%% HVA LATEX REPORT TEMPLATE
  3. %%%%
  4. %%%% Author : Joost Sijm
  5. %%%% Contact : mail@joostsijm.nl
  6. %%%% Version : 1.1.1
  7. %%%%
  8. %%%% Notes : This code is delivered as is,
  9. %%%% and without any warranty.
  10. %%%% Feel free to modify and share.
  11. %%%%
  12. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  13. \input{preamble}
  14. \begin{document}
  15. %------------------- META ----------------------
  16. \title{Example}
  17. \author{Joost Sijm}
  18. \date{\today}
  19. %================ COVER PAGE ===================
  20. \newpage
  21. \pagestyle{fancy}
  22. %------------------ TITLE ----------------------
  23. \makeatletter
  24. \begin{titlepage}
  25. \vspace*{5cm}
  26. \begin{center}
  27. \Huge{\@title}\\
  28. \vspace{1cm}
  29. \huge {Middle Title}\\
  30. \vspace{1cm}
  31. \small {Hogeschool van Amsterdam}\\
  32. \end{center}
  33. %------------------ NAMES ----------------------
  34. \vfill
  35. \begin{flushright}
  36. \@author\\
  37. \@date\\
  38. HVA, IS110
  39. \end{flushright}
  40. \end{titlepage}
  41. %============= HEADER & FOOTER =================
  42. \newpage
  43. \pagestyle{fancy}
  44. \fancyhf{}
  45. %HEADER
  46. \fancyhead[L]{\small \rm \textit{\rightmark}}
  47. \fancyhead[R]{\small \rm \textbf{\thepage}}
  48. %FOOTER
  49. \fancyfoot[L]{\small \rm \textit{\@title}}
  50. \fancyfoot[R]{\small \rm \textit{Joost Sijm – HVA}}
  51. \renewcommand{\sectionmark}[1]{\markright{\thesection.\ #1}}
  52. \renewcommand{\headrulewidth}{0.5pt}
  53. \renewcommand{\footrulewidth}{0.5pt}
  54. \makeatother
  55. %================== INDEX ======================
  56. \tableofcontents
  57. % \listoffigures
  58. %================= DOCUMENT ====================
  59. \newpage
  60. \input{docs/document}
  61. %================ References ===================
  62. %\newpage
  63. %\begin{thebibliography}{5}
  64. % \bibitem{cmos} R. Jacob Baker, \textit{CMOS. Circuit Design, Layout, and Simulation}, 2nd ed., USA: IEEE Press, 2005
  65. %\end{thebibliography}
  66. %
  67. %============== End of Document ================
  68. \end{document}