Beamer \renewcommand 无法在 \title 上运行

Beamer \renewcommand 无法在 \title 上运行

我在投影仪演示中使用\titlepage以下方式:

\documentclass[aspectratio=169]{beamer}
\usepackage[english]{babel}
\title{FirstTitel}
\subtitel{FirstSubtitel}
\author{SomeName}
\date{\today}

\begin{document}

\begin{frame}[plain]
    \titlepage
\end{frame}
...

现在我想定义另一个包含标题页但标题不同的框架。我试过:

\begin{frame}[plain]
    \renewcommand{\title}{SecondTitle}
    \titlepage
\end{frame}

并且

\begin{frame}[plain]
    \addto\captionsenglish{%
        \renewcommand{\title}{SecondTitle}
    }
    \titlepage
\end{frame}

但这两个想法都不起作用。有人能告诉我如何做到这一点吗?谢谢。

答案1

只需\title再次拨打电话即可覆盖该信息。

\documentclass[aspectratio=169]{beamer}
\usepackage[english]{babel}
\title{FirstTitel}
\author{SomeName}
\date{\today}

\begin{document}

\begin{frame}[plain]
    \titlepage
\end{frame}

\title{Second Titel}
\begin{frame}[plain]
    \titlepage
\end{frame}

\end{document}

相关内容