Building a Pitch Deck in LaTeX That Does Not Look Like Beamer
What makes a LaTeX deck look like a LaTeX deck is not LaTeX. It is four pieces of theme furniture: the navigation bar, the shaded title block, the footer strip, and the 4:3 page. Remove those and the same engine produces slides indistinguishable from anything made in a modern tool, with the advantage that your deck is plain text you can diff.
The preamble that removes the tells
Most of the work is subtraction. This is the whole of it:
\documentclass[aspectratio=169,11pt]{beamer}
% 1. No furniture. This one line removes the navigation bar,
% the headline, and the footline in one go.
\setbeamertemplate{navigation symbols}{}
\beamertemplatenavigationsymbolsempty
\setbeamertemplate{headline}{}
\setbeamertemplate{footline}{}
% 2. One accent, everything else near-black on white.
\definecolor{accent}{HTML}{2A5CAA}
\setbeamercolor{structure}{fg=accent}
\setbeamercolor{normal text}{fg=black!85}
% 3. Frame titles as plain text, left aligned, with room to breathe.
\setbeamertemplate{frametitle}{%
\vspace{1.2em}\hspace{0.5em}%
\usebeamerfont{frametitle}\insertframetitle\par\vspace{0.4em}}
\setbeamerfont{frametitle}{size=\Large,series=\bfseries}That is the entire difference between a deck that reads as 2009 and one that does not. No package, no custom class, nothing to install.
The structure that gets read
Ten to twelve slides, in this order, because it answers questions in the order they get asked:
- The one-liner. What it is, for whom, in a sentence a stranger repeats correctly.
- The problem, with a number. Not a story about a persona.
- The product, shown. A screenshot beats a description.
- Why now. What changed that makes this possible or necessary this year.
- Traction. Real figures with dates on them.
- How it makes money. Price, unit, and who pays.
- The market, honestly sized. Bottom-up beats a slice of a trillion.
- Competition, named. Naming nobody reads as not having looked.
- The team. Why these people.
- The ask. Amount, runway, what it buys.
A deck that lands on the ask at slide six with no traction slide is a deck that will be asked about traction. The order is not aesthetic.
One number, one slide
The most common failure in a LaTeX deck is treating a slide like a page. Bullets nest, a table arrives with nine rows, and the room starts reading instead of listening. If a slide has a number that matters, set it large and put the caveat underneath in small type. If it has three numbers, it is three slides or it is a handout.
Drafting it without doing the layout
The structure above is a checklist, which makes it the kind of thing worth handing to an assistant. These asks produce slides rather than advice about slides:
What you want
Build a 16:9 Beamer deck with no navigation bar, no footer, and one accent colour. One frame per slide for: one-liner, problem, product, why now, traction, revenue, market, competition, team, ask. Leave the content as placeholders I can fill.
Why this wording. Asks for the frame structure and explicitly leaves the content alone. An assistant asked to "write a pitch deck" will invent your traction numbers.
What runs
- propose_edit
- compile
What changes in the file
+ \documentclass[aspectratio=169,11pt]{beamer}+ \setbeamertemplate{footline}{}+ \begin{frame}{The ask}
Ask it the vague way instead. Ask for "a startup pitch deck" and you get ten slides of invented metrics you then have to find and delete.
Or start from one that is already built
The presentation templates include decks built this way, and there is a roundup of the Beamer themes if you want to see what the defaults look like before deciding to remove them. For a talk rather than a raise, the conference talk guide covers a different structure for a different room.
Frequently asked questions
Can you make a modern-looking pitch deck in LaTeX?
Yes. What dates a deck is the theme furniture, not the engine: navigation bars, shaded title blocks, a footer with the institution and slide number on every page. Remove those, set a 16:9 aspect ratio, use one accent colour and a lot of whitespace, and Beamer produces slides that look like anything else.
What aspect ratio should a pitch deck use?
Sixteen by nine. Beamer defaults to 4:3, which letterboxes on every screen built in the last fifteen years and is one of the fastest ways to look dated. Pass aspectratio=169 to the documentclass.
How many slides should a pitch deck have?
Ten to twelve for a first meeting. The constraint is not a rule about attention spans, it is that a deck longer than that stops being a narrative and becomes a document, and a document is read rather than presented.
Why use LaTeX for a deck instead of a slide tool?
Two reasons that are actually about you: the deck is plain text, so it diffs and merges like code, and the numbers can come from the same source as the rest of your work. If neither applies, a slide tool is a reasonable answer.
Ready to try LetX?
Join researchers and students focusing on their work, not the tools.
Get Started FreeWritten by Shihab Shahriar Antor , AI Engineer & Founder of Shahriar Labs. Builder of LetX (collaborative LaTeX) and QuantumSketch (AI STEM video).
