Miad wrote:Hi,
I think my question is easy, but I couldn't find the answer in previous talks.
I wrote an article and used "\textcolor{blue}
" in many parts of it, to clarify the changes between this version of my article and its previous one. However, now I want to finalize it with just black color. I mean I need a totally clean version in black, while my text includes many "\textcolor{blue}
" parts.
Please help me.
Welcome to the LaTeX community.
A suggestion for future work: instead of using
\textcolor{blue}{...}
directly in your document defining a macro
Code: Select all
\usepackage{xcolor}
\newcommand\changes[1]{\textcolor{blue}{#1}}
and using that would allow you for the final version just to change the definition into
Code: Select all
\usepackage{xcolor}
\newcommand\changes[1]{\textcolor{.}{#1}}
Regards