📐
Beamer — Classical LaTeX Template
Elegant serif slide deck (Palatino) with a refined title page, navy/gold rules, theorem-style blocks, and clean footline. Compiles with pdflatex.
What’s included
This template builds on the beamer document class and the following packages, already wired up in the preamble:
fontencinputencmathpazomicrotypeamsmathamssymbbooktabs
Full source
Copy it, or hit Open in editor to load it into the live preview and start editing immediately.
\documentclass[aspectratio=169,11pt]{beamer}
% ── Fonts: Palatino with small caps & old-style figures (classical) ──────────
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[sc]{mathpazo}
\usepackage{microtype}
\linespread{1.05}
\usepackage{amsmath,amssymb}
\usepackage{booktabs}
% ── Palette: restrained navy + warm accent on ivory ─────────────────────────
\definecolor{ink}{RGB}{32,30,34}
\definecolor{accent}{RGB}{38,58,110} % deep navy
\definecolor{accent2}{RGB}{150,110,40} % antique gold
\definecolor{muted}{RGB}{120,116,126}
\definecolor{rulesoft}{RGB}{214,208,198}
\definecolor{paper}{RGB}{253,251,247} % ivory canvas
\setbeamercolor{background canvas}{bg=paper}
\usetheme{default}
\usefonttheme{professionalfonts}
\setbeamertemplate{navigation symbols}{}
\setbeamercolor{normal text}{fg=ink}
\setbeamercolor{structure}{fg=accent}
\setbeamercolor{itemize item}{fg=accent}
\setbeamercolor{itemize subitem}{fg=accent2}
\setbeamertemplate{itemize item}{\small\raise.4pt\hbox{\textbullet}}
\setbeamertemplate{itemize subitem}{\footnotesize\raise.4pt\hbox{--}}
\setbeamerfont{frametitle}{family=\rmfamily}
\setbeamercolor{block title}{fg=white,bg=accent}
\setbeamercolor{block body}{fg=ink,bg=accent!6}
% ── Frame title: elegant serif + split rule ──────────────────────────────────
\setbeamertemplate{frametitle}{%
\vskip6pt
{\large\bfseries\color{accent}\insertframetitle}\par
\vskip3pt
\hbox{{\color{accent2}\rule{1.8cm}{1.1pt}}%
{\color{rulesoft}\rule{\dimexpr\textwidth-1.8cm\relax}{.4pt}}}%
}
% ── Footline: title · author · n/N ────────────────────────────────────────────
\setbeamertemplate{footline}{%
\hbox to\paperwidth{\hskip.5cm
{\scriptsize\scshape\color{muted}\inserttitle}%
\hfill
{\scriptsize\color{muted}\insertauthor\;\textbar\;\insertframenumber/\inserttotalframenumber}%
\hskip.5cm}\vskip4pt
}
\title{The Title of Your Talk}
\subtitle{A Concise, Informative Subtitle}
\author{Your Name}
\institute{Department \textperiodcentered\ University}
\date{\today}
\begin{document}
% ── Title slide ───────────────────────────────────────────────────────────────
{\setbeamertemplate{footline}{}
\begin{frame}[plain]
\vfill
\hbox{{\color{accent2}\rule{\textwidth}{1.3pt}}}\vskip3pt
\hbox{{\color{accent}\rule{\textwidth}{.5pt}}}\vskip16pt
{\LARGE\bfseries\color{accent}\inserttitle}\par\vskip4pt
{\large\itshape\color{ink}\insertsubtitle}\par\vskip16pt
{\color{accent}\rule{0.4\textwidth}{1pt}}\par\vskip12pt
{\normalsize\scshape\color{ink}\insertauthor}\par\vskip2pt
{\footnotesize\color{muted}\insertinstitute \quad\textbullet\quad \insertdate}\par
\vskip16pt
\hbox{{\color{accent}\rule{\textwidth}{.5pt}}}\vskip3pt
\hbox{{\color{accent2}\rule{\textwidth}{1.3pt}}}
\vfill
\end{frame}}
% ── Outline ───────────────────────────────────────────────────────────────────
\begin{frame}{Outline}
\tableofcontents
\end{frame}
\section{Introduction}
\begin{frame}{Motivation}
\begin{itemize}
\item State the problem and why it matters.
\item Summarise the gap in existing work.
\item Preview your contribution in one sentence.
\end{itemize}
\vskip6pt
\begin{block}{Key idea}
The single most important takeaway, phrased so the audience remembers it.
\end{block}
\end{frame}
\section{Approach}
\begin{frame}{Method}
\begin{columns}[T]
\begin{column}{0.54\textwidth}
Describe the approach in steps:
\begin{enumerate}
\item First component
\item Second component
\item How they combine
\end{enumerate}
\end{column}
\begin{column}{0.42\textwidth}
The objective we minimise:
\[
\mathcal{L}(\theta) = \frac{1}{n}\sum_{i=1}^{n} \ell\!\left(f_\theta(x_i), y_i\right)
\]
where $\theta$ are the parameters.
\end{column}
\end{columns}
\end{frame}
\section{Results}
\begin{frame}{Results}
\begin{table}
\centering
\begin{tabular}{lcc}
\toprule
Method & Accuracy & Time (s) \\
\midrule
Baseline & 88.4\% & 12.3 \\
Prior work & 91.2\% & 10.7 \\
\textbf{Ours} & \textbf{94.7\%} & \textbf{8.9} \\
\bottomrule
\end{tabular}
\end{table}
\vskip4pt
\centering\small\itshape\color{muted}Lower is better for time; higher for accuracy.
\end{frame}
\section{Conclusion}
\begin{frame}{Conclusion}
\begin{itemize}
\item Restate the contribution and the evidence for it.
\item Note one limitation honestly.
\item Point to the next step.
\end{itemize}
\vfill
\centering{\Large\bfseries\color{accent}Thank you.}\\[2pt]
{\footnotesize\color{muted}Questions welcome \textemdash\ you@university.edu}
\end{frame}
\end{document}
Related templates
Browse all free LaTeX templates →
FAQ
Is the Beamer — Classical template free?
Yes — every latexci template is free, open-source, and needs no signup. Open it in the browser editor or copy the full source.
How do I use this template?
Click “Open in editor” to load it straight into the live LaTeX preview, or copy the source into Overleaf or your local TeX editor (TeX Live, MiKTeX).