繁体   English   中英

胶乳投影机注脚颜色

[英]latex beamer footnotemark color

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

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

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 = color}有关大多数内容,请参见Beamer手册第17章。 祝好运!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM