如何更改文字颜色?

如何更改文字颜色?

可能重复:
如何改变一段文本的颜色?

想要将联系人框架上的文字从黑色更改为白色。

\documentclass[T]{beamer}
\definecolor{links}{HTML}{2A1B81}
\hypersetup{colorlinks,linkcolor=,urlcolor=links}
\usetheme{Frankfurt}
\usecolortheme{orchid}
\usefonttheme{structuresmallcapsserif}
\usefonttheme{serif}
\usepackage{multicol}
\usepackage{graphicx}
\title{Presentation Template}
\setbeamercolor{author}{fg=white}
\author{Author 1\\Author2}
\setbeamercolor{date}{fg=white}
\date\today
\begin{document}
{\usebackgroundtemplate
{\includegraphics[width=\paperwidth,height=\paperheight]{titlepage}}
\begin{frame}
    \titlepage
\end{frame}
\section*{Outline}
{\usebackgroundtemplate
{\includegraphics[width=\paperwidth,height=\paperheight]{caessubslide}}
\begin{frame}
\begin{multicols}{2}
    \frametitle{Contents}
    \tableofcontents
\end{multicols} 
\end{frame}
\section{Contact Information}
{\usebackgroundtemplate
{\includegraphics[width=\paperwidth,height=\paperheight]{caestitlepage}}
\begin{frame}
\begin{itemize}
\item CONTACT1
\item CONCTACT2
\end{itemize}
\end{frame}
\end{document}

答案1

为什么不使用该xcolor包?

通常情况下

\textcolor{black}{text}

应该做你想做的事

整体而言itemize

{\color{black}\begin{itemize}
    \item
    \item
\end{itemize}}

应该可以解决问题。

相关内容