乳胶beamer footnotemark颜色

时间:2010-11-04 00:18:57

标签: latex beamer

我有一个演示文稿,其中标题幻灯片具有黑色背景,因此文本颜色已设置为白色。作者姓名必须有上标编号,对应于列出其机构的脚注。脚注标记为白色。我怎样才能让它变白。

1 个答案:

答案 0 :(得分:1)

我可以想到两种方式......

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 {Presentation 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 =颜色} 有关这些内容的大部分内容,请参阅Beamer Manual第17章。祝你好运!