LaTeX Beamer 标题页中的并排机构

9
在我的Beamer演示文稿的标题页上,有三个作者,来自两个机构。作者被并列列出,这很好。但机构却以一个奇怪而臃肿的列形式垂直排列在中心位置。换句话说,我的显示效果是这样的:
                 My Talk Title

John Foo (1)     Sarah Bar (2)   Isaac Foo (1)

                Foo University
                Foo, MA, 02134

                Bar Institute
                Bar, CA, 90210

相比之下,我更希望有这个:

                 My Talk Title

John Foo (1)     Sarah Bar (2)   Isaac Foo (1)

    Foo University         Bar Institute
    Foo, MA, 02134         Bar, CA, 90210

非常感谢您提供的任何建议。

编辑:这里是我正在使用的代码:

\documentclass{beamer}
\usetheme{Warsaw}

institute[Foo and Bar]{
  Foo University\\
  Foo, MA, 02134
  \and
  Bar Institute\\
  Bar, CA, 90210
}

\author{John Foo\inst{1} \and Sarah Bar\inst{2} \and Isaac Foo\inst{1}} 
\title[My Title]{My Talk Title}

\begin{document}

\begin{frame}[plain]  % 'plain' suppresses header & footer decorations
  \titlepage
\end{frame}

%% .. rest of presentation goes here

\end{document}

我认为如果您不展示代码,这里无法提供帮助。您使用哪个模板? - Svante
1个回答

8
这个是否能够满足你的需求?(这里的“hack”指的是技术上的修改或改进)
\institute[Foo and Bar]{
  \begin{tabular}[h]{cc}
      Foo University &  Bar Institute \\
      Foo, MA, 02134 &  Bar, CA, 90210
  \end{tabular}      
}

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接