How to Create Professional Presentations with Beamer
Português: Leia este tutorial em português.
Beamer is the LaTeX class for presentations. It combines high-quality mathematics, consistent layouts, references, and reusable source code. It is especially useful for lectures, defenses, seminars, and technical talks.
Minimal presentation structure
\documentclass[aspectratio=169]{beamer}
\usetheme{default}
\title{Presentation Title}
\subtitle{Optional Subtitle}
\author{Your Name}
\institute{Institution}
\date{\today}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}{Outline}
\tableofcontents
\end{frame}
\section{Introduction}
\begin{frame}{First Idea}
\begin{itemize}
\item One main message per slide.
\item Short, readable text.
\item Visual evidence when it helps.
\end{itemize}
\end{frame}
\end{document}
Build a clear narrative
A professional presentation is not a report divided into slides. Define a central question, develop a logical sequence, and finish with an actionable conclusion.
- Context and problem.
- Objective or research question.
- Method, development, or demonstration.
- Results and interpretation.
- Conclusion and next steps.
Themes and visual style
Beamer includes themes such as Madrid, CambridgeUS, and Boadilla. Use them as starting points and avoid combining too many visual systems.
\usetheme{Madrid}
\usecolortheme{dolphin}
\setbeamertemplate{navigation symbols}{}
For a distinctive result, customize a small color palette, typography, and footer. Consistency matters more than decorative effects.
Use columns
\begin{frame}{Comparison}
\begin{columns}[T]
\begin{column}{0.48\textwidth}
\textbf{Before}
\begin{itemize}
\item Manual process
\item Inconsistent formatting
\end{itemize}
\end{column}
\begin{column}{0.48\textwidth}
\textbf{After}
\begin{itemize}
\item Automated process
\item Consistent identity
\end{itemize}
\end{column}
\end{columns}
\end{frame}
Images, tables, and equations
Images should be large enough to read from a distance. Simplify tables and highlight only essential values. Equations should support your explanation rather than replace it.
\begin{frame}{Model}
\[
y = \beta_0 + \beta_1 x + \varepsilon
\]
\pause
\begin{alertblock}{Interpretation}
The coefficient \(\beta_1\) represents the expected change.
\end{alertblock}
\end{frame}
Practical readability rules
- Use a 16:9 aspect ratio for modern screens.
- Choose large fonts and strong contrast.
- Avoid long paragraphs and crowded bullet lists.
- Keep margins and alignments consistent.
- Test the PDF on a projector or similar display.
- Keep a reliable version without complex animations.
Compile and present
Beamer works with pdfLaTeX, XeLaTeX, and LuaLaTeX. Choose the engine according to your fonts and packages. The final PDF is portable and can be presented in full-screen mode on any major operating system.
TexDrop is developing Bera Presentation, a customizable Beamer product for professional presentations. Meanwhile, explore the current LaTeX template collection.