Initial push of previous course

This commit is contained in:
2025-02-12 23:34:31 +01:00
parent 305d17e370
commit 11675375cb
11 changed files with 409 additions and 0 deletions

50
example-document/main.tex Normal file
View File

@@ -0,0 +1,50 @@
\documentclass{article} % Tells the compiler to treat the rest in the context of the predefined article type
% Other classes include report and book, among others
\input{preamble} % Input pastes the raw text from the given file
\title{\LaTeX Course}
\author{Some Name Here}
\date{\today}
\begin{document}
\maketitle % Makes the title defined by the commands above and shows it in the pdf
\setlength{\parskip}{0em} % Sets how much space is skipped when a new paragraph appears
\tableofcontents
\listoffigures
\listoftables
\setlength{\parskip}{0em} % 1em gives more air, but the TOC should be tightly packed
\newpage
\section{Introduction}
\lipsum[1-2]
\newpage
\input{doc/text}
\newpage
\input{doc/math}
\newpage
\input{doc/figs-and-tables}
\newpage
\input{doc/referencing}
\appendix % Changes the context of the document env to be appendix based, not "normal document"
\printbibliography % Prints the bilbiography based on the added resoruces and which citations have been done in the document
\newpage
\input{doc/appendix}
\end{document}