P
Paperly
Back to Documentation

Presentation Template (Beamer)

Create professional slide decks for conferences and lectures using LaTeX Beamer class.

Understanding Beamer

Beamer uses the frame environment to define individual slides.

Basic Slide Structure

\begin{frame}
    \frametitle{Slide Title}
    \framesubtitle{Optional Subtitle}
    
    Bullet points:
    \begin{itemize}
        \item Point A
        \item Point B
        \item Point C
    \end{itemize}
\end{frame}

Themes and Colors

Beamer allows you to change the look of your presentation easily by changing the theme in the preamble.

\usetheme{Madrid}
\usecolortheme{beaver}

Animations (Overlays)

You can reveal items one by one using \pause or item specifications.

\begin{itemize}
    \item<1-> First point appears on slide 1
    \item<2-> Second point appears on slide 2
    \item<3-> Third point appears on slide 3
\end{itemize}