在我的默呈现的扉页,我有三位作者,来自两个机构。作者获得上市并排侧,这是罚款。以下的罚款是该机构获得上市在一个奇怪的笨重柱向下中心在另一个之上之一。换句话说,我得到这样的:

                 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}
有帮助吗?

解决方案

这是不是破解你想要的东西吗?

\institute[Foo and Bar]{
  \begin{tabular}[h]{cc}
      Foo University &  Bar Institute \\
      Foo, MA, 02134 &  Bar, CA, 90210
  \end{tabular}      
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top