I'm new to the list and have been working with Latex for a couple of years now. What I would like to do is to make the equations in a document all one color. Other than using beamer is there a global command that will allow this?
I have been using
\documentclass{article}
\usepackage[dvips]{color}
\usepackage{epsfig}
%\topmargin -.7in
\textheight 9in
%\oddsidemargin .25in
%\evensidemargin .25in
%\textwidth 6in
\parskip .15in
\pagestyle{empty}
\vspace*{-.25in}
\newcommand{\green}[1]{ {\color{green} #1} }
\newcommand{\black}[1]{ {\color{black} #1} }
\newcommand{\red}[1]{ {\color{red} #1} }
\newcommand{\blue}[1]{ {\color{blue} #1} }
\newcommand{\magenta}[1]{ {\color{magenta} #1} }
\newcommand{\skyblue}[1]{ {\color{sky} #1} }
\newcommand{\mauve}[1]{ {\color{lightbrown} #1}}
\newcommand{\bluebox}[1]{ \skyblue{\ovalbox{ \black{#1} } } }
\definecolor{sky}{rgb}{0,.6,1}
\definecolor{lightbrown}{rgb}{.8,.5,.1}
and I know that I can code like this
\color{blue}{$\Gamma \alpha 234 \int \pi$}
but I have quite a few equations in the document. Anyone know of a solution?
Thanks,
Peaches
