Latex 乳胶束标色

Latex 乳胶束标色,latex,beamer,Latex,Beamer,我有一个演示,其中标题幻灯片有黑色背景,因此文本颜色已设置为白色。作者姓名必须有上标编号,与列出其机构的脚注相对应。脚注标记为白色。我怎样才能把它变成白色 我可以想出两种方法 1) 使用\author+\institute+\maketitle命令 这很容易。您只想这样做: % First define your author and institute (taken from Beamer manual example) \author[Hemaspaandra et al.]{L. Hema

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

我可以想出两种方法

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 and\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将看起来更像常规的beamer,因此,如果使用\institute命令是您的目的,那么就这样做#2只是另一种方式,它还向您展示了设置元素各个颜色的语法。 \setbeamercolor{elementName}{fg=color}
关于这方面的大部分内容,请参见第17章。祝你好运

我想你应该问这个问题。