index.tex 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. \raggedbottom
  59. \begin{document}
  60. \begin{titlepage}
  61. \newcommand{\HRule}{\rule{\linewidth}{0.5mm}}
  62. \begin{tikzpicture}[remember picture, overlay]
  63. \node [anchor=north east, inner sep=0pt] at (current page.north east)
  64. {\includegraphics[width=21cm]{../resources/graphics/ucl-banner-dl-port-outline.eps}};
  65. \end{tikzpicture}\\[3cm]
  66. \center
  67. \textsc{\Large University College London}\\[0.5cm]
  68. \textsc{\large Department of Electronic and Electrical Engineering}\\[0.5cm]
  69. \HRule \\[0.4cm]
  70. \setstretch{1.5}
  71. { \huge \bfseries Performance characterisation of 8-bit RISC and OISC architectures}\\[0.4cm]
  72. \setstretch{1.0}
  73. \HRule \\[1.0cm]
  74. \begin{multicols}{3}
  75. \Large \emph{Author:}\\
  76. Mindaugas \textsc{Jarmolovi\v{c}ius}\\
  77. \href{mailto:zceemja@ucl.ac.uk}{zceemja@ucl.ac.uk}\\
  78. \columnbreak
  79. \Large \emph{Supervisor:}\\
  80. Prof. Robert \textsc{Killey}\\
  81. \href{mailto:r.killey@ucl.ac.uk}{r.killey@ucl.ac.uk}
  82. \columnbreak
  83. \Large \emph{Second Assessor:}\\
  84. Dr. Ed \\\textsc{Romans}\\
  85. \href{mailto:e.romans@ucl.ac.uk}{e.romans@ucl.ac.uk}
  86. \end{multicols}
  87. \vfill
  88. \setstretch{2.5}
  89. { \large \bfseries A BEng Project Final Report}\\[1cm]
  90. \setstretch{1.0}
  91. {\large March 27, 2020}\\[2cm]
  92. \end{titlepage}
  93. \pagebreak
  94. \section*{Abstract}\label{sec:abstract}
  95. \input{1-abstract.tex}
  96. \vspace*{10cm}
  97. \tableofcontents
  98. \vfill\null\pagebreak
  99. \section{Introduction}\label{sec:introduction}
  100. \input{2-introduction.tex}
  101. \vfill\pagebreak
  102. \section{Goals and Objectives}\label{sec:objectives}
  103. \input{3-objectives.tex}
  104. \section{Theory and Analytical Bases}\label{sec:theory}
  105. \input{4-theory.tex}
  106. \vfill\pagebreak
  107. \section{Technical Method}\label{sec:methods}
  108. \input{5-methods.tex}
  109. \vfill\pagebreak
  110. \section{Results and Analysis}\label{sec:results}
  111. \input{6-results.tex}
  112. \section{Conclusion}\label{sec:conclusion}
  113. \input{7-conclusion.tex}
  114. \vfill\pagebreak
  115. \printbibliography
  116. \onecolumn
  117. \section{Appendix}\label{sec:appendix}
  118. \input{8-appendix.tex}
  119. \end{document}