我需要在幻灯片的标题页上写上“与 A 和 B 合作”,以便在会议上发言。我没有找到一个非常明确的方法来实现这一点,只是找到了如下代码。
\title{Group Theory}
\author{My name}
\institute[My Inst.]{Full Institut Name}
% logo of my university
\titlegraphic{\includegraphics[width=3cm]{Logo1}\hspace*{4.75cm}~%
\includegraphics[width=3cm]{Logo2}
}
\date{\today \\ \vspace{1cm} \tiny{Joint work with A and B}}
虽然标题页基本上看起来不错,但在每页的右下角,日期消失了,页码也丢失了。
请帮我把“与......合作”这句话放在标题页上。
答案1
对于\author
、date
和 ,\title
有一个可选参数,用于框架的结构(即脚线),因此您可以使用
\title[Group Theory]{A longer title of the talk concerning Group Theory}
\author[short name]{My full name}
\institute[My Inst.]{Full Institut Name}
% logo of my university
\titlegraphic{\includegraphics[width=3cm]{Logo1}\hspace*{4.75cm}~%
\includegraphics[width=3cm]{Logo2}
}
\date[\today]{\today \\ \vspace{1cm} \tiny{Joint work with A and B}}
恢复您想要的页脚。如果不缩短页脚,date
您的页脚中的日期字段将占用多行,并且幻灯片编号(位于页脚底部)将消失。
答案2
这是另一种方法。您可以在此处完全定义您的标题页。此模板将被修改。
% -------------------------------------------------------------------------
% Definitions (do not change this)
% -------------------------------------------------------------------------
\makeatletter \def\printtitle{{\centering \@title\par}}\makeatother % Title
\makeatletter \def\printauthor{{\centering \large \@author}}\makeatother % Author
\makeatletter \def\printauthor{{\centering \large \@institute}}\makeatother % Institute
\makeatletter \def\printauthor{{\centering \large \@date}}\makeatother % Date
% --------------------------------------------------------------------------
% Metadata (Change this)
% --------------------------------------------------------------------------
\title{ \Large \textsc{Technisches Projekt} % Subtitle of the document
\\[0.5cm]% 0.5cm spacing
\huge \textbf{\uppercase{Vorläufige Konstruktionsforschung v0.8}} % Title
}
\institute{vfdvfs}
\author{Hans Schnoggeloch}
\date{\today \\ \vspace{1cm} \tiny{Joint work with A and B}}
\begin{document}
\begin{frame}
\titlepage % Print the title page as the first slide
\end{frame}
这种方法有效,但我也喜欢并使用评论中给出的方法。