Course Notes Template
Author
Caleb McWhorter
Last Updated
5年前
License
Creative Commons CC BY 4.0
Abstract
A template for taking course notes using TeX.
\documentclass[11pt, twoside]{article} % Always compile at least twice.
\usepackage[lmargin=1in,rmargin=1in,tmargin=1in,bmargin=1in]{geometry}
% Cover Information
\def\univname{University Name}
\def\coursenum{MAT 999}
\def\coursename{Course Title}
\def\professor{Instructor Name}
\def\student{Note Taker}
\def\semesteryear{Semester Year}
\def\imagename{example-image-a} % Replace with University Seal
\def\scalesize{0.50} % Scale Logo Size
% Style Package (Load After Cover Information)
\usepackage{mat999} % Change to match style file
% -------------------
% Content
% -------------------
\begin{document}
% Cover Page
\coverpage
% Last Updated
\updated{\today}
% Table of Contents
\thispagestyle{empty}
\tableofcontents
\newpage
\pagestyle{fancy}
\setcounter{section}{-1}
\setcounter{page}{1}
% Sections
\input{sections/introduction}
\input{sections/section}
% Bibliography
\newpage
\nocite{*}
\printbibliography[heading=bibintoc]
\end{document}