使用 \cancel 为取消线着色

使用 \cancel 为取消线着色

\cancel我希望在使用包中的命令时,删除线的颜色是灰色cancel

代码...

\documentclass{article}

\usepackage{cancel}

\begin{document}

$$a+\cancel b+c$$

\end{document}

... 给出以下输出:

在此处输入图片描述

可以将这条取消线的颜色弄弱一些,例如灰色,而数学本身保持黑色吗?

答案1

使用\renewcommand{\CancelColor}{\color{whatevercoloryoulike}}应该有帮助!

thicklines我建议也使用该包的选项:

\documentclass{article}

\usepackage{xcolor}
\usepackage[thicklines]{cancel}

\renewcommand{\CancelColor}{\color{lightgray}}

\begin{document}

\[a+\cancel{b}+c\]

\end{document}

在此处输入图片描述

相关内容