Domanda

Sul frontespizio della mia presentazione Beamer, ho tre autori, da due istituti. Gli autori vengono elencati side-by-side, che va bene. Meno bene è che gli istituti vengono elencati uno sopra l'altro in una colonna stranamente ingombrante lungo il centro. In altre parole, ottengo questo:

                 My Talk Title

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

                Foo University
                Foo, MA, 02134

                Bar Institute
                Bar, CA, 90210

Mentre mi piacerebbe avere questo, invece:

                 My Talk Title

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

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

Qualche suggerimento sarebbe molto apprezzato.

EDIT: ecco il codice che sto usando:

\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}
È stato utile?

Soluzione

Questo hackerare la roba che si desidera?

\institute[Foo and Bar]{
  \begin{tabular}[h]{cc}
      Foo University &  Bar Institute \\
      Foo, MA, 02134 &  Bar, CA, 90210
  \end{tabular}      
}
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top