index.tex 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. \documentclass[a4paper,12pt]{article}
  2. \usepackage[top=1in,bottom=1in,left=1in,right=1in]{geometry}
  3. \usepackage[T1]{fontenc}
  4. \usepackage[utf8]{inputenc}
  5. \usepackage{newunicodechar}
  6. \usepackage{lmodern}
  7. \usepackage{textgreek}
  8. \usepackage{amsmath}
  9. \usepackage{mathtools}
  10. \usepackage{graphicx}
  11. \usepackage{pdflscape}
  12. \usepackage{svg}
  13. \usepackage{caption}
  14. \usepackage{enumitem}
  15. \usepackage{lipsum}
  16. \usepackage{listings}
  17. \usepackage{tabularx}
  18. \usepackage{blindtext}
  19. \usepackage{hyperref}
  20. \usepackage{pgfgantt}
  21. \usepackage{colortbl}
  22. \usepackage{pdfpages}
  23. \usepackage{setspace}
  24. \usepackage{subcaption}
  25. \usepackage{tikz}
  26. \usepackage{chngcntr}
  27. \usepackage{longtable}
  28. \usepackage{xcolor,colortbl}
  29. \usepackage{pdfpages}
  30. \counterwithin{figure}{subsection}
  31. \usepackage{multicol}
  32. \usepackage{mdframed}
  33. \setcounter{tocdepth}{3}
  34. \usepackage[backend=bibtex]{biblatex}
  35. \addbibresource{references.bib}
  36. \definecolor{c1}{HTML}{ff7568}
  37. \definecolor{c2}{HTML}{8cbfff}
  38. \definecolor{c3}{HTML}{a6ddb7}
  39. \definecolor{darkred}{rgb}{0.6,0,0}
  40. \lstdefinelanguage{asm}{
  41. morekeywords={ADC,ADD,ADDC,ADDI,ALU0,ALU1,AND,ANDI,BEQ,BGE,BGT,BR0,BR1,BRZ,BZ,CALL,CI0,CI1,CI2,CLC,CLN,CLS,COM,COMA,COMD,CPY0,CPY1,CPY2,CPY3,DEC,DIV,EQ,GE,GETAH,GETIF,GT,INC,INTRE,JUMP,LE,LT,LWHI,LWLO,MEM0,MEM1,MEM2,MEMHI,MEMLO,MOD,MOVE,MUL,MULHI,MULLO,NE,NULL,OR,ORI,PC0,PC1,POP,PUSH,RBWI,REG0,REG1,RET,RETI,RJUMP,ROL,ROR,SBC,SETC,SETI,SETN,SETS,SLL,SRA,SRL,SSETN,SSETS,STACK,STPT0,STPT1,SUB,SUBC,SUBI,SWHI,SWLO,XOR,XORI},
  42. sensitive=false,
  43. morecomment=[l]{;},
  44. morestring=[b]",
  45. }
  46. \lstset{language=asm, basicstyle=\ttfamily, commentstyle=\color{gray}, emphstyle={\color{darkred}}}
  47. \begin{document}
  48. \begin{titlepage}
  49. \newcommand{\HRule}{\rule{\linewidth}{0.5mm}}
  50. \begin{tikzpicture}[remember picture, overlay]
  51. \node [anchor=north east, inner sep=0pt] at (current page.north east)
  52. {\includegraphics[width=21cm]{../resources/graphics/ucl-banner-dl-port-outline.eps}};
  53. \end{tikzpicture}\\[3cm]
  54. \center
  55. \textsc{\Large University College London}\\[0.5cm]
  56. \textsc{\large Department of Electronic and Electrical Engineering}\\[0.5cm]
  57. \HRule \\[0.4cm]
  58. \setstretch{1.5}
  59. { \huge \bfseries Performance characterisation of 8-bit RISC and OISC architectures}\\[0.4cm]
  60. \setstretch{1.0}
  61. \HRule \\[1.0cm]
  62. \begin{multicols}{3}
  63. \Large \emph{Author:}\\
  64. Mindaugas \textsc{Jarmolovi\v{c}ius}\\
  65. \href{mailto:zceemja@ucl.ac.uk}{zceemja@ucl.ac.uk}\\
  66. \columnbreak
  67. \Large \emph{Supervisor:}\\
  68. Prof. Robert \textsc{Killey}\\
  69. \href{mailto:r.killey@ucl.ac.uk}{r.killey@ucl.ac.uk}
  70. \columnbreak
  71. \Large \emph{Second Assessor:}\\
  72. Dr. Ed \\\textsc{Romans}\\
  73. \href{mailto:e.romans@ucl.ac.uk}{e.romans@ucl.ac.uk}
  74. \end{multicols}
  75. \vfill
  76. \setstretch{2.5}
  77. { \large \bfseries A BEng Project Final Report}\\[1cm]
  78. \setstretch{1.0}
  79. {\large March 27, 2020}\\[2cm]
  80. \end{titlepage}
  81. \pagebreak
  82. \begin{multicols}{2}
  83. \section{Abstract}\label{sec:abstract}
  84. \input{1-abstract.tex}
  85. \section{Introduction}\label{sec:introduction}
  86. \input{2-introduction.tex}
  87. \section{Goals and Objective}\label{sec:objectives}
  88. \input{3-objectives.tex}
  89. \section{Theory and Analytical Bases}\label{sec:theory}
  90. \input{4-theory.tex}
  91. \section{Technical Method}\label{sec:methods}
  92. \input{5-methods.tex}
  93. \section{Results and Analysis}\label{sec:results}
  94. \input{6-results.tex}
  95. \section{Conclusion}\label{sec:conclusion}
  96. \input{7-conclusion.tex}
  97. \section{References}
  98. \printbibliography
  99. \end{multicols}
  100. \pagebreak
  101. \section{Appendix}\label{sec:appendix}
  102. \input{8-appendix.tex}
  103. \end{document}