2010-11-04 112 views
0

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

+0

我想你应该在http://tex.stackexchange.com/上提问。 – MForster 2010-11-04 00:25:46

回答

0

我能想到的两种方法...

1)使用\笔者+ \研究所+ \ 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)如果手动将作者和机构:

首先,使用\作家和\研究所,只需使用\ {称号演讲标题}。然后尝试这样的事:

\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是要看起来更像是普通投影仪,因此,如果使用\研究所命令是你所追求的,这样做的。 #2只是另一种方式,并且还向您展示了设置单个元素颜色的语法。 \ setbeamercolor {elementName} {fg = color} 对于大多数这些东西,请参阅第17章Beamer Manual。祝你好运!