乳胶投影机标题页中的并排机构

时间:2010-09-29 04:48:09

标签: latex beamer

在我的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}

1 个答案:

答案 0 :(得分:5)

这会破解你想要的东西吗?

\institute[Foo and Bar]{
  \begin{tabular}[h]{cc}
      Foo University &  Bar Institute \\
      Foo, MA, 02134 &  Bar, CA, 90210
  \end{tabular}      
}