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