0

タイトル スライドの背景が黒で、テキストの色が白に設定されているプレゼンテーションがあります。著者名には、所属機関を示す脚注に対応する上付き数字を付ける必要があります。脚注マークは白です。どうやったら白くなるんだろう。

4

1 に答える 1

1

2つの方法が考えられます...

1) \author + \institute + \maketitle コマンドの使用

これはとても簡単です。あなたはこれをしたいだけです:

% First define your author and institute (taken from Beamer manual example)
\author[Hemaspaandra et al.]{L. Hemaspaandra\inst{1} \and T. Tantau\inst{2}}
\institute[Universities of Rochester and Berlin]{
\inst{1}Department of Computer Science\\
University of Rochester
\and
\inst{2}Fakult\"at f\"ur Elektrotechnik und Informatik\\
Technical University of Berlin

% Now make the actual title slide
\frame[plain]{
  \setbeamercolor{institute}{fg=white}
  \maketitle
}

2) 著者と機関を手動で配置する場合:

まず、\author と \institute を使用しないでください。\title{プレゼンテーション タイトル} のみを使用してください。次に、次のようなことを試してください。

\begin{frame}
\maketitle  % will insert the title alone

\begin{center}

  \setbeamercolor{footnote}{fg=white} % setting the footnote color to white
  John Doe\footnote{Institute Name 1 }

  Jane Doe\footnote{Institute Name 2 }

\end{center}
\setbeamercolor{footnote}{fg=default} % now set back to normal future frames
\end{frame}

方法 #1 は通常のビーマーのように見えるので、\institute コマンドを使用する場合は、そのようにします。#2 は単なる別の方法であり、要素の個々の色を設定するための構文も示しています。\setbeamercolor{elementName}{fg=color}この内容のほとんどについては、ビーマー マニュアルの第 17 章を参照してください。幸運を!

于 2010-11-04T01:03:00.917 に答える