-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
135 lines (115 loc) · 2.82 KB
/
thesis.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
%
% # Thesis
% ## The main latex entrypoint
%
% Adapted from the template courtesy Paul Vojta
% https://www.overleaf.com/latex/templates/uc-berkeley-thesis-template/mfzmtxfqvtxx
%
\documentclass{ucbthesis} % Thanks to Paul Vojta, https://www.overleaf.com/latex/templates/uc-berkeley-thesis-template/mfzmtxfqvtxx
% If the Grad. Division insists that the first paragraph of a section
% be indented (like the others), then include this line:
% \usepackage{indentfirst}
\usepackage{biblatex} % bib format references
\usepackage{rotating} % provides sidewaystable and sidewaysfigure
\usepackage{minted} % code syntax highlighting
\usepackage{svg} % SVG rendering
\usepackage{hyperref} % Creates hyperlinks
% And our really important package: markdown
\usepackage[inlineFootnotes,fencedCode,citations,definitionLists,hashEnumerators,smartEllipses,pipeTables,tableCaptions,hybrid]{markdown}
% This prevents hyperref's default behavior of
% putting those ugly rectangles around each link.
\hypersetup{
% These options add underlining (obviously), which we omit:
% allbordercolors={0 0 0},
% pdfborderstyle={/S/U/W 1},
%
% These do more or less what they say:
colorlinks={true},
linktoc={all},
linkcolor={black},
citecolor={black},
urlcolor={blue}
}
%%begin novalidate
\markdownSetup{renderers={
link = {\href{#2}{#1}},
image = {\begin{figure}[hbt!]
\centering
\includegraphics{#3}%
\ifx\empty#4\empty\else
\caption{#4}%
\fi
\label{fig:#1}%
\end{figure}}
}}
%%end novalidate
\addtolength{\abovecaptionskip}{\baselineskip}
\bibliography{refs}
\hyphenation{mar-gin-al-ia}
\hyphenation{bra-va-do}
\begin{document}
% #
% # Declarations for Front Matter
% #
\title{An Integrated Circuit Design Framework for Human, Computer, and ML Designers}
\author{Dan Fritchman}
\degreesemester{Fall}
\degreeyear{2023}
\degree{Doctor of Philosophy}
\chair{Professor Vladimir Stojanovi\'{c}}
\othermembers{Professor Kris Pister \\
Professor Alper Atamturk}
\numberofmembers{3}
\field{Engineering — Electrical Engineering and Computer Sciences}
\maketitle
\copyrightpage
% #
% # Abstract
% #
\begin{abstract}
\begin{markdown}
\markdownInput{abstract.md}
\end{markdown}
\end{abstract}
\begin{frontmatter}
% #
% # Dedication
% #
% \begin{dedication}
% \null\vfil
% \begin{center}
% \begin{markdown}
% \markdownInput{dedication.md}
% \end{markdown}
% \end{center}
% \vfil\null
% \end{dedication}
% #
% # Contents
% #
\tableofcontents
\clearpage
\listoffigures
\clearpage
\listoftables
% #
% # Acknowledgements
% #
\begin{acknowledgements}
\begin{markdown}
\markdownInput{acknowledgements.md}
\end{markdown}
\end{acknowledgements}
\end{frontmatter}
\pagestyle{headings}
% #
% # Content
% #
\begin{markdown}
\markdownInput{content.md}
\end{markdown}
% #
% # Bibliography
% #
\printbibliography
\end{document}