index.tex 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. \documentclass[a4paper,12pt,twocolumn]{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{float}
  12. \usepackage[format=plain,labelfont={bf,it},font=it]{caption}
  13. \usepackage{enumitem}
  14. \usepackage{lipsum}
  15. \usepackage{listings}
  16. \usepackage{pdflscape}
  17. \usepackage{tabularx}
  18. %\usepackage{blindtext}
  19. \usepackage{hyperref}
  20. %\usepackage{pgfgantt}
  21. \usepackage{setspace}
  22. \usepackage{subcaption}
  23. \usepackage{tikz}
  24. \usepackage{chngcntr}
  25. \usepackage{longtable}
  26. \usepackage{xcolor,colortbl}
  27. \usepackage{multicol}
  28. %\usepackage{mdframed}
  29. \usepackage{oubraces}
  30. \usepackage{stfloats}
  31. %\usepackage{fixltx2e}
  32. \setcounter{tocdepth}{3}
  33. \counterwithin{figure}{subsection}
  34. \counterwithin{table}{subsection}
  35. \usepackage[backend=bibtex,style=numeric,sorting=none]{biblatex}
  36. \addbibresource{references.bib}
  37. \renewcommand*{\bibfont}{\footnotesize}
  38. % Our base colours
  39. \definecolor{c1}{HTML}{ff7568}
  40. \definecolor{c2}{HTML}{8cbfff}
  41. \definecolor{c3}{HTML}{a6ddb7}
  42. \definecolor{darkred}{rgb}{0.6,0,0}
  43. \lstdefinelanguage{asm}{
  44. 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},
  45. sensitive=false,
  46. morecomment=[l]{;},
  47. morestring=[b]",
  48. }
  49. \lstset{language=asm, basicstyle=\ttfamily, commentstyle=\color{gray}, emphstyle={\color{darkred}}}
  50. % This enviroment ensures that structures like listing and tables are not broken between columns or pages.
  51. \newenvironment{blockpage}
  52. {\begin{center}\begin{minipage}[c]{\linewidth}}
  53. {\end{minipage}\end{center}}
  54. % This allows placing figure in column
  55. \newenvironment{colfigure}
  56. {\par\medskip\noindent\minipage{\linewidth}}
  57. {\endminipage\par\medskip}
  58. \begin{document}
  59. \begin{titlepage}
  60. \newcommand{\HRule}{\rule{\linewidth}{0.5mm}}
  61. \begin{tikzpicture}[remember picture, overlay]
  62. \node [anchor=north east, inner sep=0pt] at (current page.north east)
  63. {\includegraphics[width=21cm]{../resources/graphics/ucl-banner-dl-port-outline.eps}};
  64. \end{tikzpicture}\\[3cm]
  65. \center
  66. \textsc{\Large University College London}\\[0.5cm]
  67. \textsc{\large Department of Electronic and Electrical Engineering}\\[0.5cm]
  68. \HRule \\[0.4cm]
  69. \setstretch{1.5}
  70. { \huge \bfseries Performance characterisation of 8-bit RISC and OISC architectures}\\[0.4cm]
  71. \setstretch{1.0}
  72. \HRule \\[1.0cm]
  73. \begin{multicols}{3}
  74. \Large \emph{Author:}\\
  75. Mindaugas \textsc{Jarmolovi\v{c}ius}\\
  76. \href{mailto:zceemja@ucl.ac.uk}{zceemja@ucl.ac.uk}\\
  77. \columnbreak
  78. \Large \emph{Supervisor:}\\
  79. Prof. Robert \textsc{Killey}\\
  80. \href{mailto:r.killey@ucl.ac.uk}{r.killey@ucl.ac.uk}
  81. \columnbreak
  82. \Large \emph{Second Assessor:}\\
  83. Dr. Ed \\\textsc{Romans}\\
  84. \href{mailto:e.romans@ucl.ac.uk}{e.romans@ucl.ac.uk}
  85. \end{multicols}
  86. \vfill
  87. \setstretch{2.5}
  88. { \large \bfseries A BEng Project Final Report}\\[1cm]
  89. \setstretch{1.0}
  90. {\large March 27, 2020}\\[2cm]
  91. \end{titlepage}
  92. \pagebreak
  93. \section{Abstract}\label{sec:abstract}
  94. \input{1-abstract.tex}
  95. \section{Introduction}\label{sec:introduction}
  96. \input{2-introduction.tex}
  97. \vfill\pagebreak
  98. \section{Goals and Objectives}\label{sec:objectives}
  99. \input{3-objectives.tex}
  100. \section{Theory and Analytical Bases}\label{sec:theory}
  101. \input{4-theory.tex}
  102. \vfill\pagebreak
  103. \section{Technical Method}\label{sec:methods}
  104. \input{5-methods.tex}
  105. \vfill\pagebreak
  106. \section{Results and Analysis}\label{sec:results}
  107. \input{6-results.tex}
  108. \section{Conclusion}\label{sec:conclusion}
  109. \input{7-conclusion.tex}
  110. \vfill\pagebreak
  111. \printbibliography
  112. \onecolumn
  113. \section{Appendix}\label{sec:appendix}
  114. \input{8-appendix.tex}
  115. \end{document}