24 lines
525 B
TeX
24 lines
525 B
TeX
\documentclass[12pt]{article}
|
|
%to set margins
|
|
\usepackage[margin=2cm]{geometry}
|
|
%for math typing
|
|
\usepackage{latexsym, amssymb, amsfonts, mathtools, xfrac}
|
|
%for source code listings
|
|
\usepackage{listings}
|
|
%for algorithm typing
|
|
\usepackage[noEnd=false]{algpseudocodex}
|
|
|
|
%turn off section below a specific depth
|
|
% \setcounter{secnumdepth}{0}
|
|
|
|
%makes subsections alphabetical.
|
|
% \renewcommand\thesubsection{\alph{subsection}).}
|
|
|
|
\title{REPLACE}
|
|
\date{REPLACE}
|
|
\author{Gabriel Venberg}
|
|
|
|
\begin{document}
|
|
\maketitle
|
|
\end{document}
|