使用乳胶进行演示,改变每帧的宽度
在我的演示文稿中,我使用 \usetheme{Warsaw}
,为了增加每帧中的可用空间,我使用 \useoutertheme{infolines}
。这样,每页底部的栏均分为作者姓名、标题、日期和幻灯片编号。有没有办法改变每个部分的宽度?例如,与作者姓名或日期相比,我需要更多的标题空间。任何评论都将受到高度赞赏。另外,我正在使用的代码如下:
\usepackage{beamerthemesplit}
\usetheme{Warsaw}
\useoutertheme{infolines}
\title[...]{...}
\author[...]{...}
\institute{...}
\date{...}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
谢谢。
In my presentation, I use \usetheme{Warsaw}
and in order to increase the usable space in each frame, I use \useoutertheme{infolines}
. In this way, the bar at the bottom of each page is equally divided between author's name, title, and date and slide number. Is there anyway to change the width of each section? For example, I need more space for the title compared to author's name or date. Any comment is highly appreciated. Also, the code I am using is the following:
\usepackage{beamerthemesplit}
\usetheme{Warsaw}
\useoutertheme{infolines}
\title[...]{...}
\author[...]{...}
\institute{...}
\date{...}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到
beamrouterthemeinfolines.sty
文件(在...\latex\beamer\themes\outer
文件夹中)。您将看到每个框使用wd=.333333\paperwidth
硬编码 1:1:1 宽度,因此您必须编辑样式文件。以下内容未经测试,但应该会让您走上正确的道路。
根据需要更改这些值,然后以不同的名称保存文件,例如
beamrouterthemeunevenlines.sty
。现在使用unevenlines
作为您的外部主题。Find the
beamerouterthemeinfolines.sty
file (in the...\latex\beamer\themes\outer
folder). You will see that the 1:1:1 width is hard-coded usingwd=.333333\paperwidth
for each box, so you will have to edit the style file.The following is not tested, but should set you on the right path.
Change those values as you want, then save the file under a different name, say
beamerouterthemeunevenlines.sty
. Now useunevenlines
as your outer theme.