投影仪演示文稿中的研究所名称

投影仪演示文稿中的研究所名称

我正在尝试将该机构的名称放入投影仪演示文稿中

\documentclass{beamer}
\institution{XYZ}
...
\begin{document}
\maketitle

但是我收到错误,说它是undefined control sequence。错误可能是什么?

答案1

正确的命令是\institute{...}(参见beameruserguide第 10.1 节添加标题页)。

更好的做法是:

\documentclass{beamer}
\usepackage{lmodern}

\title{My title}
\author{My name}
\institute{My institute}
\date{\today}

\begin{document}
\begin{frame}
\titlepage
\end{frame}
...
\end{document}

相关内容