80 lines
1.5 KiB
TeX
Raw Normal View History

2023-03-07 21:57:37 -08:00
% use [nosolutions] flag to hide solutions.
% use [solutions] flag to show solutions.
\documentclass[
solutions,
singlenumbering
]{../../resources/ormc_handout}
\usepackage{mathtools} % for \coloneqq
2023-03-16 19:36:13 -07:00
%\usepackage{lua-visual-debug}
\usepackage{censor}
2023-03-07 21:57:37 -08:00
\usepackage{alltt}
2023-03-16 13:41:41 -07:00
\newenvironment{helpbox}[1][0.5]{
2023-03-07 21:57:37 -08:00
\begin{center}
\begin{tcolorbox}[
colback=white!90!black,
colframe=white!90!black,
coltitle=black,
center title,
width = #1\textwidth,
leftrule = 0mm,
rightrule = 0mm,
toprule = 0mm,
bottomrule = 0mm,
left = 1mm,
right = 1mm,
top = 1mm,
bottom = 1mm,
toptitle = 1mm,
lefttitle = 1mm,
titlerule = 1pt,
title={\textbf{Things you will need:}}
]
}{
\end{tcolorbox}
\end{center}
}
% Logic block comment
2023-03-16 19:36:13 -07:00
\newcommand{\cmnt}[1]{\textcolor{gray}{\# #1}}
\newcounter{allttLineCounter}
\setcounter{allttLineCounter}{0}
\newcommand{\linenoref}[1]{\colorbox{gray!30!white}{#1}}
\newcommand{\lineno}{
\stepcounter{allttLineCounter}%
\linenoref{\ifnum\value{allttLineCounter}<10 0\fi\arabic{allttLineCounter}}%
2023-03-07 21:57:37 -08:00
}
2023-03-16 19:36:13 -07:00
% Redefine alltt so it automatically
% resets allttLineCounter
\let\oldalltt\alltt
\renewenvironment{alltt}
{\setcounter{allttLineCounter}{0}\begin{oldalltt}}
{\end{oldalltt}}
2023-03-07 21:57:37 -08:00
\newcommand{\thus}{\(\Rightarrow\)}
\newcommand{\qed}{\(\blacksquare\)}
\begin{document}
\maketitle
<Advanced 2>
<Fall 2022>
{To Mock a Mockingbird}
{
Prepared by Mark on \today \\
Based on a book of the same name.
}
2023-03-07 22:00:47 -08:00
\input{parts/00 intro}
\input{parts/01 tmam}
2023-03-16 19:36:13 -07:00
\input{parts/02 kestrel}
2023-03-07 21:57:37 -08:00
\end{document}