M .task/backlog.data M .task/completed.data M .task/pending.data M .task/undo.data A Writing/202510270-Emerson-Pres/beamerthemedane.sty A Writing/202510270-Emerson-Pres/beamerthemedane_native.sty A Writing/202510270-Emerson-Pres/figure/bigone.tex A Writing/202510270-Emerson-Pres/fonts/OpenSans-Bold.ttf
153 lines
4.5 KiB
TeX
153 lines
4.5 KiB
TeX
% !TEX program = lualatex
|
|
\documentclass[14pt]{beamer}
|
|
\usepackage[T1]{fontenc}
|
|
\title{Presentation Template Title with extra words to show that it wraps!}
|
|
\date{\today}
|
|
\author{\textbf{Dane A. Sabo}\\
|
|
\small{dane.sabo@pitt.edu} \\
|
|
\vspace{0.25cm}
|
|
\textbf{Dr. Dan G. Cole} \\
|
|
\small{dgcole@pitt.edu}
|
|
}
|
|
\institute{University of Pittsburgh}
|
|
|
|
%DEFINE TOGGLES!
|
|
\def\darkmode{0}
|
|
\def\notemode{0}
|
|
\def\gridmode{0}
|
|
%
|
|
|
|
\usetheme{dane_native}
|
|
\begin{document}
|
|
|
|
{\setbeamertemplate{footline}{}
|
|
\begin{frame}
|
|
\titlepage
|
|
\end{frame}
|
|
}
|
|
|
|
\begin{frame}{Table of Contents}
|
|
\tableofcontents
|
|
\end{frame}
|
|
|
|
\begin{frame}{Things you should know!}
|
|
\begin{enumerate}
|
|
\item You must use Lua\LaTeX as your compiler. There's two reasons why:
|
|
\begin{itemize}
|
|
\item You need either Xe\LaTeX or Lua\LaTeX for custom fonts
|
|
\item Xe\LaTeX bugs out with the text color if you use notes. (It's white for some reason??)
|
|
\end{itemize}
|
|
\end{enumerate}
|
|
\end{frame}
|
|
|
|
\begin{frame}{Text Sizes}
|
|
\frametitle{Different Font Sizes test test test test test test test test test test test test test }
|
|
\tiny Tiny text \\
|
|
\scriptsize Script size text \\
|
|
\footnotesize Footnote size text \\
|
|
\small Small text \\
|
|
\normalsize Normal text (default) \\
|
|
\large Large text \\
|
|
\Large Larger text \\
|
|
\LARGE Even larger text \\
|
|
\huge Huge text \\
|
|
\Huge Hugest text
|
|
\end{frame}
|
|
|
|
% Frame with section and subsection
|
|
\section{Basic Slides}
|
|
\subsection{Overview}
|
|
\begin{frame}{Check out the section label!}
|
|
\framesubtitle{This is that subtilte I mentioned.}
|
|
This is the basic presentation template.
|
|
|
|
\begin{enumerate}
|
|
\item The heading starts on top.
|
|
\begin{itemize}
|
|
\item You can set a subtitle using \textbackslash framesubtitle\{\}
|
|
\item The text will automatically center for you
|
|
\end{itemize}
|
|
|
|
\item There are two color modes
|
|
\begin{itemize}
|
|
\item Light Mode
|
|
\item Dark Mode
|
|
\end{itemize}
|
|
|
|
\item This is also an example of the itemize environment.
|
|
\end{enumerate}
|
|
|
|
\textit{Contact me if you have questions!}
|
|
\end{frame}
|
|
|
|
\subsection{Figures, columns and math!}
|
|
%Frame with math
|
|
\begin{frame}{Here is an example of a frame using math.}
|
|
\framesubtitle{The math font works pretty well! I like spheres.}
|
|
|
|
Here is the surface area of a sphere:
|
|
|
|
\begin{equation}
|
|
\int_0^R 2\pi r \sqrt{1+\left(\frac{dy}{dx}\right)^2} dx
|
|
\end{equation}
|
|
|
|
Note, this equation is cool.
|
|
|
|
\end{frame}
|
|
|
|
%Frame with two columns, and an image!
|
|
|
|
\section{Beamer Specific Features}
|
|
|
|
% Frame with pauses and slide-specific things
|
|
\frame{
|
|
\frametitle{Itemization}
|
|
\framesubtitle{Making lists of things!}
|
|
|
|
\begin{itemize}
|
|
\item This is the first item
|
|
\item<2-> \textit{Here is a second item!}
|
|
\item<3-> Here is a third item! It is only here for a moment
|
|
\item<4-> \textbf{This one is in bold!}
|
|
\end{itemize}
|
|
|
|
}
|
|
|
|
% Frame with alert block
|
|
\frame{
|
|
\frametitle{I like building blocks!}
|
|
\framesubtitle{The first is a regular block, and the second is an alert! block.}
|
|
|
|
\begin{block}{Regular Block}
|
|
You should probably wear deodorant.
|
|
\end{block}
|
|
|
|
\begin{alertblock}{Alerted Block}
|
|
If you \textbf{don't} wear deodorant, you will stink.
|
|
\end{alertblock}
|
|
|
|
\begin{exampleblock}{Example Block}
|
|
Paul doesn't wear deoderant, and he is stinky.
|
|
\end{exampleblock}
|
|
}
|
|
|
|
% Frame with Notes
|
|
\frame{
|
|
\frametitle{This frame has notes!}
|
|
|
|
You must enable them though at the beginning of the document
|
|
\begin{itemize}
|
|
\onslide<1->
|
|
\item \textbackslash notetogglemode1 - Notes only
|
|
\note{Here's one of those notes, teehee!}
|
|
|
|
\onslide<2>
|
|
\item \textbackslash notetogglemode2 - Notes and slides side by side!
|
|
|
|
|
|
\end{itemize}
|
|
}
|
|
\note{If you put a note outside the frame, the note will print after the slide is finished.}
|
|
|
|
\end{document}
|