75 lines
1.9 KiB
TeX
75 lines
1.9 KiB
TeX
% https://jdhao.github.io/2019/05/30/markdown2pdf_pandoc/#the-top
|
|
% These were adapted from the above, which was very helpful in getting this
|
|
% functional.
|
|
|
|
% change style of quote, see also https://tex.stackexchange.com/a/436253/114857
|
|
\usepackage[most]{tcolorbox}
|
|
|
|
% change page margins
|
|
\usepackage[top=2cm, bottom=1.5cm, left=2cm, right=2cm]{geometry}
|
|
|
|
% change the line spacing
|
|
\usepackage{setspace}
|
|
\setstretch{1.25}
|
|
|
|
\usepackage[utf8]{inputenc}
|
|
|
|
% NOTE: This needs to stay above hyperref otherwise internal links break.
|
|
|
|
% start each section on new page and make section titles orange.
|
|
\usepackage{titlesec}
|
|
\titleformat{\section}
|
|
{\color{orange}\normalfont\Huge\bfseries}
|
|
\newcommand{\sectionbreak}{\clearpage}
|
|
|
|
% custom colors
|
|
\definecolor{applegreen}{rgb}{0.55,0.71,0.0}
|
|
|
|
% Remove figure from images
|
|
\usepackage[labelformat=empty]{caption}
|
|
|
|
\usepackage{fancyvrb,newverbs}
|
|
|
|
% see for different color codes https://rgbcolorcode.com/color/E6FFEA
|
|
\definecolor{linequote}{RGB}{224,215,188}
|
|
\definecolor{backquote}{RGB}{230,255,234} % background color of quotes
|
|
\definecolor{bordercolor}{RGB}{221,221,221}
|
|
|
|
% change left border: https://tex.stackexchange.com/a/475716/114857
|
|
% change left margin: https://tex.stackexchange.com/a/457936/114857
|
|
\newtcolorbox{myquote}[1][]{%
|
|
enhanced,
|
|
breakable,
|
|
size=minimal,
|
|
left=10pt,
|
|
top=5pt,
|
|
bottom=5pt,
|
|
frame hidden,
|
|
boxrule=0pt,
|
|
sharp corners=all,
|
|
colback=backquote,
|
|
borderline west={4pt}{0pt}{bordercolor},
|
|
#1
|
|
}
|
|
|
|
% redefine quote environment to use the myquote environment, see https://tex.stackexchange.com/a/337587/114857
|
|
\renewenvironment{quote}{\begin{myquote}}{\end{myquote}}
|
|
|
|
% remove the abstract title.
|
|
\usepackage{abstract}
|
|
\renewcommand{\abstractname}{}
|
|
\renewcommand{\absnamepos}{empty}
|
|
|
|
\def\squarefoot{$ft^{\text{2}}$ }
|
|
\def\goalsimage{
|
|
\begin{center}
|
|
|
|
\hfill\break
|
|
\hfill\break
|
|
|
|
\includegraphics[width=0.6\linewidth,height=\textheight,keepaspectratio]{img/goals.png}
|
|
|
|
\end{center}
|
|
|
|
}
|