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}
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.
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.
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}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With