改变与不同评论模式相关的文本颜色

改变与不同评论模式相关的文本颜色

在我的设置文件中,我定义了不同的编辑模式(作为注释),如下所示:

\newcounter{redmode}
\setcounter{redmode}{\redactionmode}
\includecomment{rd1}    
\includecomment{rd2}    
\newcommand{\redact}{
  \ifcase\number\value{redmode}
    \excludecomment{rd1}
    \excludecomment{rd2}

  \or
    \includecomment{rd1}
    \excludecomment{rd2}
 \or
    \excludecomment{rd1}
    \includecomment{rd2}
\else
    \includecomment{rd1}
    \includecomment{rd2}
  \fi
}
\redact

我的问题是,我如何为每种模式分配不同的颜色?例如,如果我在 main.tex 文档中以模式 rd1 进行注释,则文本颜色自动为红色。

感谢您提供的任何帮助。

相关内容