如何在 \author 中设置左右名称?

如何在 \author 中设置左右名称?

当我尝试设置左侧和右侧来固定内容时。我需要在下图中设置内容。我使用了 \usepackage[british]{babel},\usetheme{Rochester} 包

\author[xyz]{\footnotesize 
 Final Presentation\\ 
submitted  by\\
  xyz\\%
  Under the guidance of \\
 xyz\\
  xyz}

在此处输入图片描述

答案1

您可以使用两个并排的minipage。这还需要将整个构造括起来,\texorpdfstring以避免书签和 PDF 信息出现问题:

\documentclass{beamer}
\usetheme{Rochester}

\title{The Title}
\author[xyz]{\texorpdfstring{%
\footnotesize 
\begin{minipage}{.5\textwidth}
\centering
Final Presentation \\ 
submitted  by \\
xyz
\end{minipage}%  
\begin{minipage}{.5\textwidth}
\centering
Under the guidance of \\
xyz \\
xyz
\end{minipage}}{The Author}}
\institute[The institute]{The Institute \\ xyz}

\begin{document}

\begin{frame}
\maketitle
\end{frame}

\end{document}

在此处输入图片描述

相关内容