質問

「beamerthemesplit」を使用しています Beamer LaTeXパッケージのテンプレート。このテンプレートには、すべてのページのフッターに作成者の名前とプレゼンテーションのタイトルが含まれています。このフッターを抑制する方法を知っている人はいますか?

役に立ちましたか?

解決

デフォルトのフッターを削除し、代わりに次のコマンドを使用してページ番号を挿入しました。

%gets rid of bottom navigation bars
\setbeamertemplate{footline}[page number]{}

%gets rid of navigation symbols
\setbeamertemplate{navigation symbols}{}

他のヒント

beamerthemesplitテンプレートを使用していないので、最も直接的な回答はありません。 しかし、最近のプレゼンテーションでは、それらを少し分解したいと思いました。これを使用する場合

\mode<presentation>
{
  \useoutertheme{default}   % empty
%  \useoutertheme{infolines}% simple but bland
%  \useoutertheme{split}    % ok if compress option used
%  \useoutertheme{shadow}   % way too much space used -- ok with option 'compress'
  %\useoutertheme{shadow}   
  %\setbeamercovered{transparent} % or whatever (possibly just delete it)
  %\useoutertheme[subsection=false]{miniframes}
}

default を介して本当に空のセットアップを取得します。 infolines を追加すると、3つの部分を持つフッターが表示されます。その外側のテーマのコードを調べて、部分を追加するだけです。カラーテーマのあるLikewiese-少し実験して、最終的にデフォルトのテーマに戻りました。

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top