Simple lecture notes template with colored boxes, focused on Mathematics.
- Includes boxes for Theorems, Propositions, Corollaries and Lemmas (with proofs), and Definitions and Examples - defined in
boxes.sty
- Handles header imports, document setup, and shortcuts (like
\Q
for$\mathbb{Q}$ and\R
for$\mathbb{R}$ etc. - defined ingeneral.sty
- Sample code for inserting images and blocks of code is in
samples.sty
- Also in the repository is
Lecture Notes Template.tex
containing use cases for all the environments, and some of the shortcuts.
Can be used in VSCode by installing the
LaTeX Workshop
extension.
All modules follow a similar pattern:
- Definitions:
\begin{definition}{<name>}{<ref tag>} ... \end{definition}
- Theorems:
- Statement:
\begin{theorem}{<name>}{<ref tag>} ... \end{theorem}
- Proof:
\begin{tproof*}{<name>}{<ref tag>} ... \end{tproof*}
- Statement:
- Corollaries:
- Statement:
\begin{corollary}{<name>}{<ref tag>} ... \end{corollary}
- Proof:
\begin{cproof*}{<name>}{<ref tag>} ... \end{cproof*}
- Statement:
- Propositions:
- Statement:
\begin{proposition}{<name>}{<ref tag>} ... \end{proposition}
- Proof:
\begin{pproof*}{<name>}{<ref tag>} ... \end{pproof*}
- Statement:
- Lemmas:
- Statement:
\begin{lemma}{<name>}{<ref tag>} ... \end{lemma}
- Proof:
\begin{lproof*}{<name>}{<ref tag>} ... \end{lproof*}
- Statement:
- Examples:
\begin{example}{<name>}{<ref tag>} ... \end{example}
- Remarks:
\begin{remark}{<name>}{<ref tag>} ... \end{remark}
(the *
is there to prevent the proof from being numbered - remove if required)