2010-11-04 114 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。祝你好運!