我如何在标题幻灯片上添加额外信息?特别是我想添加会议名称和地点以及论文所依据的参考。
谢谢
答案1
您可以使用可用字段添加额外信息;可选参数可用于防止额外信息出现在脚注/标题中:
\documentclass{beamer}
\title[The Title]{The Title}
\subtitle[The Subtitle]{The Subtitle \\ Based on A Really Important Paper \\ by Some Other Author}
\author[The Author]{The Author}
\institute{The Institute \\ Some Location}
\begin{document}
\begin{frame}
\maketitle
\end{frame}
\end{document}