Conversion Toolspdfinfo of beamer presentation

Information and discussion about output converters related to LaTeX (e.g. dvips, ps2pdf, ...)
Post Reply
ther
Posts: 19
Joined: Wed Mar 17, 2010 10:40 pm

pdfinfo of beamer presentation

Post by ther »

latex@conference.jabber.org
pdftex 31415921403
jedit text editor

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

pdfinfo of beamer presentation

Post by frabjous »

Beamer uses the information in \title{...} to set the PDF metadata title. If you leave that blank, obviously, you're not going to get a useful title in your pdf metadata.

If you want the PDF metadata title to be different than the title Beamer shows, you have to load the beamer class with the usepdftitle=false option. Then you can call the options from hyperref with the hypersetup command:

Code: Select all

\documentclass[usepdftitle=false]{beamer}
\setbeamertemplate{navigation symbols}{}
\usetheme{Singapore}
\title{A Title}
\institute{Somewhere}
\author{Someone}
\date{\today}
\hypersetup{pdftitle={Something else}}
\begin{document}
\begin{frame}
A frame  
\end{frame}

\end{document}
Post Reply