更改投影仪演示文稿中方程和方程编号的字体颜色

更改投影仪演示文稿中方程和方程编号的字体颜色

我想将 Beamer 演示文稿幻灯片中的公式颜色与其余文本颜色区分开来。我使用了以下代码,但公式编号的颜色仍然是黑色。如何更改它。MWE:

\documentclass[11pt]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usetheme{default}
\begin{document}


    \begin{frame}
        \frametitle{}
         The equation is given as 
        \begin{align}{\label{xn}
            \color{blue} x_{n}
            =\frac{1}{\sqrt{N}}\sum^{N-1}_{{k}=0}
            X_k e^{j2\pi kn/N},  \hspace{20mm} n=0,1, \dots,{N-1}}
        \end{align}
    \end{frame}
\end{document}

答案1

只需移动指令\color{blue} 外部显示数学环境。如果公式后面有内容,则将\color{blue}指令和公式都放在一个\begingroup ... \endgroup语句中,以限制变色操作的范围。

在此处输入图片描述

\documentclass[11pt]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usetheme{default}
\begin{document}

\begin{frame}
\frametitle{}
The equation is given as 
\begingroup % localize scope of following instruction
\color{blue} % <-- new 
\begin{equation}\label{xn}
x_{n}=\frac{1}{\sqrt{N}} \sum^{N-1}_{k=0}
X_k e^{\,j2\pi kn/N} \qquad n=0,1,\dots,N-1
\end{equation}
\endgroup
\end{frame}
\end{document}

相关内容