Conversion Tools ⇒ pdfinfo of beamer presentation
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
pdfinfo of beamer presentation
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}