-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
46 lines (37 loc) · 936 Bytes
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
\documentclass[a4paper,11pt]{article}
\usepackage[margin=1in]{geometry}
\usepackage{graphicx} % image handling
\usepackage{amsmath,amssymb} % math packages
\usepackage[none]{hyphenat}
\usepackage{tikz}
\usepackage{siunitx}
\usepackage{float}
\usepackage{tikz}
\usepackage{booktabs}
\usepackage{minted}
\usepackage{framed}
\usepackage{calc}
\setlength{\parindent}{0pt}
\setlength{\parskip}{5pt}
\renewcommand{\arraystretch}{1.5}
\setminted[c]{
%frame=lines,
tabsize=4,
fontsize=\footnotesize,
autogobble % remove trailing whitespace
}
\begin{document} \pagenumbering{gobble}
% cover page
\begin{center}
{\scshape\huge ELEC2204\par} \vspace{0.5cm}
{\scshape\Large Computer Engineering\par} \vspace{2cm}
{\scshape Updated: \today}
\end{center}
\pagebreak
% contents page
\tableofcontents \pagebreak
\pagenumbering{arabic}
% include topic files
\include{performance}
\include{arithmetic}
\end{document}