| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%		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 {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}%================ References ===================\newpage\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}
 |