Skip to content

Commit de2a147

Browse files
committed
Merge branch 'main' of github.com:dan-fritchman/Thesis
2 parents 2a58610 + 93c7f5c commit de2a147

File tree

1 file changed

+22
-9
lines changed

1 file changed

+22
-9
lines changed

thesis.tex

Lines changed: 22 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,32 @@
66
% https://www.overleaf.com/latex/templates/uc-berkeley-thesis-template/mfzmtxfqvtxx
77
%
88

9-
\documentclass{ucbthesis}
10-
\usepackage{biblatex}
9+
\documentclass{ucbthesis} % Thanks to Paul Vojta, https://www.overleaf.com/latex/templates/uc-berkeley-thesis-template/mfzmtxfqvtxx
10+
11+
% If the Grad. Division insists that the first paragraph of a section
12+
% be indented (like the others), then include this line:
13+
% \usepackage{indentfirst}
14+
15+
\usepackage{biblatex} % bib format references
1116
\usepackage{rotating} % provides sidewaystable and sidewaysfigure
12-
\usepackage{minted}
17+
\usepackage{minted} % code syntax highlighting
18+
\usepackage{svg} % SVG rendering
19+
\usepackage{hyperref} % Creates hyperlinks
20+
% And our really important package: markdown
1321
\usepackage[inlineFootnotes,fencedCode,citations,definitionLists,hashEnumerators,smartEllipses,pipeTables,tableCaptions,hybrid]{markdown}
14-
\usepackage{svg}
1522

16-
\usepackage{hyperref}
23+
% This prevents hyperref's default behavior of
24+
% putting those ugly rectangles around each link.
25+
\hypersetup{
26+
colorlinks={true},
27+
linktoc={all},
28+
linkcolor={black},
29+
citecolor={black},
30+
urlcolor={black}
31+
}
32+
1733
%%begin novalidate
18-
\markdownSetup{rendererPrototypes={
34+
\markdownSetup{renderers={
1935
link = {\href{#2}{#1}},
2036
image = {\begin{figure}[hbt!]
2137
\centering
@@ -28,9 +44,6 @@
2844
}}
2945
%%end novalidate
3046

31-
% If the Grad. Division insists that the first paragraph of a section
32-
% be indented (like the others), then include this line:
33-
% \usepackage{indentfirst}
3447

3548
\addtolength{\abovecaptionskip}{\baselineskip}
3649
\bibliography{refs}

0 commit comments

Comments
 (0)