-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
140 lines (106 loc) · 3.81 KB
/
main.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
136
137
138
139
140
% \documentclass[handout]{beamer}
\documentclass{beamer}
%%%%%% Load Packages %%%%%%
\usepackage{xcolor} % font colors
\usepackage{url}
% \usepackage[hidelinks]{hyperref}
\usepackage{minted}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{esint} % double surface integrals etc
\usepackage{listings} % like figures but for code
% \usepackage{verbatim}
% \usepackage{fancyvrb}
% \usepackage{enumerate}
\usepackage[shortlabels]{enumitem} % for numbered lists; setlist; shortlabels to define bullet etc.
\usepackage{tikz}
\usepackage{comment} % include block comments
\usepackage{wrapfig} % wrap text around figure
\usepackage{graphicx}
\usepackage{svg}
%%%%%% Set Theme, Color Scheme %%%%%%
\usetheme{Madrid}
% Change base colour beamer@blendedblue (originally RGB: 0.2,0.2,0.7)
\colorlet{beamer@blendedblue}{green!40!black}
%%%%%% Page Setup %%%%%%
\setbeamersize
{
text margin left=1cm,
text margin right=1cm
}
%%%%%% Define Additional Behavior %%%%%%
\AtBeginSection[]
{
\begin{frame}
\frametitle{Table of Contents}
\tableofcontents[currentsection,hideothersubsections]
\end{frame}
} % displaying table of contents slide with highlight before each section
\setbeamertemplate{caption}[numbered] % number figures in beamer
\definecolor{dgreen}{rgb}{0.,0.6,0.} % define dark green color
\newcommand{\keyw}[1]{\textcolor{dgreen}{\emph{#1}}}
\newcommand{\keytt}[1]{\textcolor{dgreen}{\texttt{#1}}}
% \begingroup\makeatletter\def\@currenvir{verbatim}
\robustify\mintinline % ``helps" with minted???
% \setlist[itemize,1]{label=$\times$}
% \setlist[itemize,2]{label=$\checkmark$}
% \setlist[itemize,3]{label=$\diamond$}
% \setlist[itemize,4]{label=$\bullet$}
%%%%%% Document Title Info %%%%%%
\title{A \LaTeX{} Tutorial}
\author{Lydia England}
% \institute{Overleaf}
\date{2022}
% \usepackage{subfiles}
%%%%%% Document %%%%%%
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}
\frametitle{Table of Contents}
\tableofcontents[hideallsubsections]
\end{frame}
%%%%%% Input Files from Elsewhere in the Project %%%%%%
\section{Introduction}
\input{Source-Slides/BmrSections/Intro.tex}
\input{Source-Slides/BmrExercises/IntroExercise.tex}
\section{Document Structure}
% \subsection{Document Components}
\input{Source-Slides/BmrSections/Components.tex}
\input{Source-Slides/BmrExercises/ComponentsExercise.tex}
% \subsection{Basic Structure of a Document}
\input{Source-Slides/BmrSections/Structures.tex}
\input{Source-Slides/BmrExercises/StructuresExercise.tex}
\section{Formatting Basics}
\input{Source-Slides/BmrSections/Lists.tex}
\subsection{Basic Text Manipulation}
\input{Source-Slides/BmrSections/BasicText.tex}
\input{Source-Slides/BmrExercises/TextExercise.tex}
\subsection{Basic Math Notation}
\input{Source-Slides/BmrSections/BasicMath.tex}
\input{Source-Slides/BmrExercises/MathExercise.tex}
\input{Source-Slides/BmrExercises/SM.tex}
%%% challenge %%%
\input{Source-Slides/BmrExercises/CrossRef.tex}
\section{Floats: Figures and Tables}
\input{Source-Slides/BmrSections/Floats.tex}
\input{Source-Slides/BmrSections/Figures.tex}
% \input{Source-Slides/BmrSections/Tables.tex}
% \section{Bibliography Management}
% \input{Source-Slides/BmrSections/Bibliography.tex}
% \section{Advanced Packages (that you should know!)}
% \input{Source-Slides/BmrSections/Tikz.tex}
% \input{Source-Slides/BmrSections/Beamer.tex}
% \section{Field-Specific Tools}
% \input{Source-Slides/BmrFieldSpecific/Mathematics.tex}
% \input{Source-Slides/BmrFieldSpecific/Physics.tex}
% \input{Source-Slides/BmrFieldSpecific/Chemistry.tex}
% \input{Source-Slides/BmrFieldSpecific/CS.tex}
% \input{Source-Slides/BmrFieldSpecific/Engineering.tex}
% \input{Source-Slides/BmrFieldSpecific/Exams.tex}
% \input{Source-Slides/BmrFieldSpecific/Chess.tex}
% \section{Resources}
% \input{Source-Slides/BmrSections/Resources.tex}
% \input{Samples.tex}
\end{document}