From dd6cbff83f4d79a39679cc7660c970a4ad0661d6 Mon Sep 17 00:00:00 2001 From: gabe Date: Wed, 13 Apr 2022 23:10:30 -0500 Subject: [PATCH] added presentaion template --- LaTeX-template.tex => article-template.tex | 2 ++ presentation-template.tex | 26 ++++++++++++++++++++++ 2 files changed, 28 insertions(+) rename LaTeX-template.tex => article-template.tex (96%) create mode 100644 presentation-template.tex diff --git a/LaTeX-template.tex b/article-template.tex similarity index 96% rename from LaTeX-template.tex rename to article-template.tex index e4a0ac0..30f0ae2 100644 --- a/LaTeX-template.tex +++ b/article-template.tex @@ -3,6 +3,8 @@ \usepackage[dvipsnames]{xcolor} %to set margins \usepackage[margin=2cm]{geometry} +%lets us add pics +\usepackage{graphicx} % adds newline after paragraph, removes indent \usepackage{parskip} %for math typing diff --git a/presentation-template.tex b/presentation-template.tex new file mode 100644 index 0000000..1db9b23 --- /dev/null +++ b/presentation-template.tex @@ -0,0 +1,26 @@ +\documentclass{beamer} +%gives us the ability to use colour +\usepackage[dvipsnames]{xcolor} +%to set margins +\usepackage[margin=2cm]{geometry} +% adds newline after paragraph, removes indent +\usepackage{parskip} +%for math typing +\usepackage{latexsym, amssymb, amsfonts, mathtools, xfrac} +%lets us add pics +\usepackage{graphicx} + +\beamertemplatenavigationsymbolsempty + +\title{REPLACE} +\author{Gabe Venberg} +% \logo{\includegraphics[height=1cm]{REPLACE}} + +\begin{document} +\frame{\titlepage} +\begin{frame} + \begin{itemize} + \item + \end{itemize} +\end{frame} +\end{document}