Document Classesbeamer and long titles

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
CoolnessItself
Posts: 47
Joined: Wed Nov 11, 2009 9:30 pm

beamer and long titles

Post by CoolnessItself »

This might be general to classes other than beamer, but my problem is specifically with beamer.

The main beamer site lists an example, which I've reproduced below. The only thing I've changed is the title, to Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb.

Code: Select all

\documentclass{beamer}

\usepackage{beamerthemesplit}

\title{Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb}
\author{Till Tantau}
\date{\today}

\begin{document}

\frame{\titlepage}

\section[Outline]{}
\frame{\tableofcontents}

\section{Introduction}
\subsection{Overview of the Beamer Class}
\frame
{
  \frametitle{Features of the Beamer Class}

  \begin{itemize}
  \item<1-> Normal LaTeX class.
  \item<2-> Easy overlays.
  \item<3-> No external programs needed.      
  \end{itemize}
}
\end{document}
The footer at the bottom has the entire title, but it is cut off. Is there a command to either
a) change the footer to only display a truncated version, OR
b) have some kind of combination of a title and a "minititle," so I could say
\title{Dr. Strangelove}
\minititle{or: How I Learned to Stop Worrying and Love the Bomb}
And the footer would display title and the first page would display both title and minititle?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

beamer and long titles

Post by gmedina »

Hi,

use the optional argument:

Code: Select all

\title[Short title]{Long title}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

beamer and long titles

Post by localghost »

Read Section 3.3 (Title material, p. 17) of the beamer manual.


Best regards and welcome to the board
Thorsten¹
Post Reply