-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpreamble.tex
More file actions
73 lines (62 loc) · 1.22 KB
/
preamble.tex
File metadata and controls
73 lines (62 loc) · 1.22 KB
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
\usepackage{booktabs}
\usepackage{graphicx}
\usepackage{color, colortbl}
\PassOptionsToPackage{dvipsnames}{xcolor}
\definecolor{LightBlue}{rgb}{0.76,0.88,0.96}
% rgb(195, 225, 244) and divide by 255
\definecolor{LightYellow}{rgb}{ 0.98, 0.988, 0.737}
% rgb(250,252,188) and divide by 255
\usepackage{hyperref}
\hypersetup{
colorlinks = true,
linkcolor = {blue}
}
\usepackage[margin=1in]{geometry}
\usepackage{makeidx}
\makeindex
\urlstyle{tt}
\newenvironment{reflect}
{
\begin{center}
\begin{tabular}{|p{0.8\textwidth}|}
\rowcolor{LightBlue}
\hline\\
\rowcolor{LightBlue}
\textbf{Reflect:}
}
{
\\\rowcolor{LightBlue}
\\\hline
\end{tabular}
\end{center}
}
\newenvironment{mathbox}
{
\begin{center}
\begin{tabular}{|p{0.8\textwidth}|}
\rowcolor{LightYellow}
\hline\\
\rowcolor{LightYellow}
\textbf{Math Box:}
}
{
\\\rowcolor{LightYellow}
\\\hline
\end{tabular}
\end{center}
}
\newenvironment{highlight}
{
\begin{center}
\begin{tabular}{|p{0.8\textwidth}|}
\rowcolor{LightYellow}
\hline\\
\rowcolor{LightYellow}
\textbf{Notice:}
}
{
\\\rowcolor{LightYellow}
\\\hline
\end{tabular}
\end{center}
}