[Tex/LaTex] Identify template for lecture notes

templates

Very simple, but does anyone know which LaTeX template these lecture notes are done in?

Best Answer

This is quite an easy template to copy, you can start with something like this, and further tune things as you want:

\documentclass[20pt]{extarticle}
\usepackage[left=1in,right=1in]{geometry}

\begin{document}
\raggedright

\section{Markov Chains}

\begin{itemize}
\item The Markov property is common in probability
models because, by assumption, one supposes
that the important variables for the system being
modeled are all included in the state space.
\item The Markov property is common in probability
models because, by assumption, one supposes
that the important variables for the system being
modeled are all included in the state space.
\end{itemize}

\end{document}

enter image description here

Related Question