From 9f2d512fa1c2e7edd9e97dd387381c1075987f9b Mon Sep 17 00:00:00 2001 From: Kenneth Odle Date: Sun, 25 Jun 2023 08:22:56 -0400 Subject: [PATCH] Initial commit --- beamer.tex | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 beamer.tex diff --git a/beamer.tex b/beamer.tex new file mode 100644 index 0000000..4696b6b --- /dev/null +++ b/beamer.tex @@ -0,0 +1,27 @@ +\documentclass[english, 11pt]{beamer} + +\usetheme{Berlin} +\usecolortheme{dove} + +\begin{document} + +\begin{frame} + \section{This is the first frame} + Chapters are not allowed in Beamer presentations + \begin{itemize} + \item This is the first item + \item This is the second item + \end{itemize} +\end{frame} + +\begin{frame} + \section{This is the second frame} + However, Sections and Subsections are + \begin{itemize} + \item This is the third item + \item This is the fourth item + \end{itemize} +\end{frame} + + +\end{document} \ No newline at end of file