【问题标题】:Presentation with latex, changing the width in each frame用乳胶演示,改变每帧的宽度
【发布时间】:2010-04-08 23:02:07
【问题描述】:

在我的演示文稿中,我使用了\usetheme{Warsaw},为了增加每一帧的可用空间,我使用了\useoutertheme{infolines}。这样,每页底部的栏在作者姓名、标题、日期和幻灯片编号之间平分。反正有没有改变每个部分的宽度?例如,与作者姓名或日期相比,我需要更多的标题空间。任何评论都非常感谢。另外,我使用的代码如下:

\usepackage{beamerthemesplit}

\usetheme{Warsaw}
\useoutertheme{infolines}

\title[...]{...}
\author[...]{...}
\institute{...}
\date{...}

\begin{document}

\begin{frame}
\titlepage
\end{frame}

谢谢。

【问题讨论】:

    标签: latex presentation beamer


    【解决方案1】:

    找到beamerouterthemeinfolines.sty 文件(在...\latex\beamer\themes\outer 文件夹中)。您将看到 1:1:1 宽度是使用 wd=.333333\paperwidth 对每个框进行硬编码的,因此您必须编辑样式文件。

    以下内容未经测试,但应该让您走上正确的道路。 根据需要更改这些值,然后以不同的名称保存文件,例如beamerouterthemeunevenlines.sty。现在使用unevenlines 作为你的外部主题。

    【讨论】: