-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomp3121_main.tex
60 lines (51 loc) · 1.44 KB
/
comp3121_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
47
48
49
50
51
52
53
54
55
56
57
58
59
\documentclass[12pt, letterpaper]{article}
\usepackage[margin=1in]{geometry}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{mathtools}
\usepackage{fancyhdr}
\usepackage[utf8]{inputenc}
\usepackage{dirtytalk} % \say command for quotes
\usepackage{ wasysym }
\usepackage{graphicx}
\usepackage{physics}
\usepackage{esint}
\usepackage{subfiles}
\usepackage{hyperref}
\hypersetup { % Formatting for hyperlinks
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=black
}
\graphicspath{{'./assets}}
\pagestyle{fancy}
\setlength{\headheight}{15pt}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\title{Algorithms and Programming Techniques \\ COMP3121 UNSW}
\author{Hussain Nawaz \\ [email protected]}
\date{2022T2}
\rhead{}
\lhead{}
\newcommand{\hi}{\mathrm{hi}}
\newcommand{\lo}{\mathrm{lo}}
\newcommand{\pred}{\mathrm{pred}}
\newcommand{\opt}{\mathrm{opt}}
\newcommand{\argmin}{\mathrm{argmin}}
% \newcommand{\O}{\mathcal{O}}
\begin{document}
\maketitle
\tableofcontents
\newpage
\subfile{./introduction.tex}
\subfile{./algorithm_analysis.tex}
\subfile{./divide_conquer.tex}
\subfile{./greedy.tex}
\subfile{./network_flow_analysis.tex}
\subfile{./dynamic_programming.tex}
\subfile{./string_matching.tex}
\subfile{./linear_programming.tex}
\subfile{./intractable_problems_approximations.tex}
\end{document}