master.tex 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  2. %%%% 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{docs/preamble}
  14. \begin{document}
  15. %---------------- COVER PAGE -------------------
  16. \newpage
  17. \pagestyle{fancy}
  18. \fancyhf{}
  19. %------------------ HEAD -----------------------
  20. % \fancyhead[L]{ \includegraphics[scale=0.9]{figs/logo.pdf} }
  21. %------------------ TITLE ----------------------
  22. \vspace*{6cm}
  23. \begin{center}
  24. \Huge {Big Title}\\
  25. \vspace{1cm}
  26. \huge {Middle Title}\\
  27. \vspace{1cm}
  28. \small {Small Title} \\
  29. \end{center}
  30. %------------------ NAMES ----------------------
  31. \vfill
  32. \begin{flushright}
  33. \begin{tabular}{ll}
  34. Author: & Name Lastname\\
  35. & \today\\
  36. & City, Country.
  37. \end{tabular}
  38. \end{flushright}
  39. %------------- HEADER - FOOTER -----------------
  40. \newpage
  41. \pagestyle{fancy}
  42. \fancyhf{}
  43. %HEADER
  44. \fancyhead[L]{\small \rm \textit{Section \rightmark}}
  45. \fancyhead[R]{\small \rm \textbf{\thepage}}
  46. %FOOTER
  47. \fancyfoot[L]{\small \rm \textit{Footer - Left}}
  48. \fancyfoot[R]{\small \rm \textit{Footer - Right}}
  49. \renewcommand{\sectionmark}[1]{\markright{\thesection.\ #1}}
  50. \renewcommand{\headrulewidth}{0.5pt}
  51. \renewcommand{\footrulewidth}{0.5pt}
  52. %================== INDEX ======================
  53. \tableofcontents
  54. % \listoffigures
  55. %================= DOCUMENT ====================
  56. \newpage
  57. \input{docs/document}
  58. %================ References ===================
  59. \newpage
  60. \newpage
  61. \begin{thebibliography}{5}
  62. % \bibitem{cmos} R. Jacob Baker, \textit{CMOS. Circuit Design, Layout, and Simulation}, 2nd ed., USA: IEEE Press, 2005
  63. \end{thebibliography}
  64. %============== End of Document ================
  65. \end{document}