乳胶投影机标题页中的并排学院
在我的 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}
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}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这能破解你想要的东西吗?
Does this hack the stuff you want?