タイトルページビーマーラテックス中のサイドバイサイド機関

StackOverflow https://stackoverflow.com/questions/3818807

  •  26-09-2019
  •  | 
  •  

質問

私のビーマープレゼンテーションのタイトルページに、私は2つの研究機関から、3人の著者を持っています。著者は、列挙されたサイド・バイ・サイド、大丈夫です取得します。以下の罰金は、機関が中央ダウン奇妙かさばる欄に別の上に1つずつリストしてしまうことがあります。言い換えれば、私はこれを取得します:

                 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

任意の提案をいただければ幸いです。

EDITます:

:ここで私が使用しているコードです
\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