index.tex 3.9 KB

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