Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Side-by-side institutes in latex beamer title page

Tags:

latex

beamer

On the title page of my Beamer presentation, I have three authors, from two institutes. The authors get listed side-by-side, which is fine. Less fine is that the institutes get listed one on top of another in an oddly bulky column down the center. In other words, I get this:

                 My Talk Title

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

                Foo University
                Foo, MA, 02134

                Bar Institute
                Bar, CA, 90210

Whereas I'd love to have this instead:

                 My Talk Title

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

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

Any suggestions would be greatly appreciated.

EDIT: here's the code I'm using:

\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}
like image 431
SuperElectric Avatar asked Sep 29 '10 04:09

SuperElectric


People also ask

How do you make a title page in Latex Beamer?

To create a title page, we need to put \titlepage command inside a frame environment. Using \title[short title]{Presentation title} will print short title at the bottom of the presentation, depending on the used theme. The line code \title[]{Presentation title} will remove the talk title from the footer.

How do you make a separate title page in latex?

To separate these two sections out we'll use the \vfill command which will automatically add in the amount of vertical space needed for the content to fill the page. Next we'll add in a line of text to specify what degree the thesis is being submitted for. The double backslash is used to create a new line.


1 Answers

Does this hack the stuff you want?

\institute[Foo and Bar]{
  \begin{tabular}[h]{cc}
      Foo University &  Bar Institute \\
      Foo, MA, 02134 &  Bar, CA, 90210
  \end{tabular}      
}
like image 137
phimuemue Avatar answered Nov 16 '22 00:11

phimuemue