Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 2.33 KB

README.md

File metadata and controls

40 lines (30 loc) · 2.33 KB

LaTeX Lecture Notes Template

Simple lecture notes template with colored boxes, focused on Mathematics.

Info

  • 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 in general.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.

Usage

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*}
  • Corollaries:
    • Statement: \begin{corollary}{<name>}{<ref tag>} ... \end{corollary}
    • Proof: \begin{cproof*}{<name>}{<ref tag>} ... \end{cproof*}
  • Propositions:
    • Statement: \begin{proposition}{<name>}{<ref tag>} ... \end{proposition}
    • Proof: \begin{pproof*}{<name>}{<ref tag>} ... \end{pproof*}
  • Lemmas:
    • Statement: \begin{lemma}{<name>}{<ref tag>} ... \end{lemma}
    • Proof: \begin{lproof*}{<name>}{<ref tag>} ... \end{lproof*}
  • 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)

Screenshots

Sample Image 1 Sample Image 2 Sample Image 3