LaTeX-template/article-template.tex

57 lines
1.3 KiB
TeX
Raw Normal View History

2022-02-03 14:27:39 -06:00
\documentclass[12pt]{article}
2022-02-13 19:49:02 -06:00
%gives us the ability to use colour
\usepackage[dvipsnames]{xcolor}
2022-02-03 14:27:39 -06:00
%to set margins
\usepackage[margin=2cm]{geometry}
2022-04-13 23:10:30 -05:00
%lets us add pics
\usepackage{graphicx}
2022-02-18 16:43:11 -06:00
% adds newline after paragraph, removes indent
\usepackage{parskip}
2022-04-17 12:13:55 -05:00
%lets us add pics
\usepackage{graphicx}
2022-02-03 14:27:39 -06:00
%for math typing
\usepackage{latexsym, amssymb, amsfonts, mathtools, xfrac}
2022-03-08 17:47:36 -06:00
%for making pretty trees
\usepackage{forest}
%for source code listings
\usepackage{listings}
2022-02-03 14:27:39 -06:00
%for algorithm typing
\usepackage[noEnd=false]{algpseudocodex}
2022-02-13 19:35:29 -06:00
%set some settings for listings package
\lstset{
backgroundcolor=\color{white},
basicstyle=\footnotesize\ttfamily,
breakatwhitespace=false,
breaklines=true,
captionpos=b,
2022-02-13 19:49:02 -06:00
commentstyle=\color{Green},
2022-02-13 19:35:29 -06:00
frame=single,
keepspaces=true,
keywordstyle=\color{blue},
numbers=left,
numbersep=5pt,
numberstyle=\tiny\color{gray},
rulecolor=\color{black},
stepnumber=1,
stringstyle=\color{BurntOrange},
tabsize=2,
}
2022-02-03 14:27:39 -06:00
%turn off section below a specific depth
% \setcounter{secnumdepth}{0}
%makes subsections alphabetical.
% \renewcommand\thesubsection{\alph{subsection}).}
2022-02-03 14:27:39 -06:00
2022-04-17 12:13:55 -05:00
%makes subsubsections roman.
% \renewcommand\thesubsubsection{\roman{subsubsection}).}
2022-02-03 14:27:39 -06:00
\title{REPLACE}
\date{REPLACE}
\author{Gabriel Venberg}
\begin{document}
\maketitle
\end{document}