This repository was archived by the owner on Mar 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tex
109 lines (90 loc) · 3.1 KB
/
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
\documentclass{nitroma-report}
\usepackage[british]{babel}
\usepackage{import}
% page layout
\usepackage{pdflscape} % landscape pages
\usepackage{afterpage} % full-page figures at the next opportunity
\usepackage{pdfpages} % include other PDF docs
% typography
% \usepackage{csquotes} % clever quote marks
% \MakeOuterQuote{"}
\usepackage[detect-all]{siunitx} % numbers and units
\DeclareSIUnit\year{yr}
\DeclareSIUnit\USD{\$}
\DeclareSIUnit\GBP{£}
\DeclareSIUnit\EUR{€}
\DeclareSIUnit\JPY{JP¥}
\DeclareSIUnit\CNY{CN¥}
\DeclareSIUnit\atm{atm}
\DeclareSIQualifier\ww{w/w}
\DeclareSIQualifier\wv{w/v}
\sisetup{text-celsius = °C}
\usepackage{enumitem} % control list spacing
\setlist{nosep}
% \usepackage{epigraph}
% formulae
\usepackage{amsmath}
\usepackage{chemmacros} % Swiss-army knife for chemistry
\chemsetup{modules=all}
\newcommand\dd{\mathrm{d}}
%comment out large sections
\usepackage{comment}
% graphics
\usepackage{wrapfig}
\usepackage{float}
%nomenclature
\usepackage{nomencl}
\makenomenclature
\usepackage{etoolbox}
\renewcommand\nomgroup[1]{%
\item[\bfseries
\ifstrequal{#1}{A}{Acronyms}{%
\ifstrequal{#1}{G}{General}{%
\ifstrequal{#1}{X}{Superscripts}{%
\ifstrequal{#1}{Z}{Subscripts}{%
}}}}% same number of closing brackets as lines above
]\vspace{\parsep}}
\setlength{\nomitemsep}{0pt}
\renewcommand{\nompreamble}{\small}
\usepackage{svg} % Package for including svg diagrams
% tables
\usepackage{tabularx}
\newcolumntype{Y}{>{\centering\arraybackslash}X}
\usepackage{booktabs}
\usepackage{multirow}
\usepackage{multicol}
\usepackage{longtable}
\newcommand{\tabsup}[1]{\textsuperscript{\textit{#1}}}
\usepackage{adjustbox}
\newcommand{\splitcell}[2][t]{% https://tex.stackexchange.com/a/19678/135479
\begin{tabular}[#1]{@{}c@{}}#2\end{tabular}}
\newcommand{\rtext}[2][90]{\rotatebox[origin=rt]{#1}{#2}}
\newcommand{\rcell}[2][2cm]{\rtext{\parbox[t]{#1}{\raggedleft #2}}} % ideally should use origin=rt https://tex.stackexchange.com/a/367139/135479 but that goes weird
\newcommand{\gLo}{\cellcolor{green}L}
\newcommand{\yMe}{\cellcolor{yellow}M}
\newcommand{\rHi}{\cellcolor{red}H}
\addbibresource{zotero.bib}
\subtitle{Final Design Report}
\title{Continuous Nitration of Substituted Aromatics}
\author{Team 8: Marie~Jones, Mathusan~Kandiah, Zong~Lee, Yuxin~Liu, Mustafa~Nasar, Helen~Ogbobi, Wei~Ooi, Andreas~Richardson, Stephen~Tan, Sathurthini~Thurairatnam, Mingchuan~Zheng}
\date{19 March 2021}
\begin{document}
\frontmatter
\includepdf[pages=1,fitpaper]{FYDP_Cover_Sheet.pdf}
\maketitle
\compactchapterspacing
\import{chapters/0-executive-summary}{0-main}
\normalchapterspacing
\tableofcontents
\mainmatter
% \import{chapters/X-sample-chapter}{0-main}
\import{chapters/1-synthesis}{0-main}
\import{chapters/2-reaction}{0-main}
\import{chapters/3-separation}{0-main}
\import{chapters/4-operation-control}{0-main}
\import{chapters/5-safety-layout-environment}{0-main}
\import{chapters/6-economics}{0-main}
\begin{appendices}
\import{chapters/Z-support}{0-main}
\end{appendices}
\end{document}