白色文本背景的墨水使用情况

白色文本背景的墨水使用情况

我正在做一个包含大量带背景色的彩色框和浮动框的项目。这会消耗大量墨水,因此我考虑制作一个使用透明背景的单独副本。

最简单的选择是用{gray}{1}(这会产生我们在计算机屏幕上认为的“白色”/“透明”)替换所有背景颜色定义,但我想知道 LaTeX 是否足够智能,能够弄清楚对于打印的副本,它根本不需要为其着色,因为纸已经是白色的了。

以下第 2-4 段中哪些使用了白色墨水(如果有)?({gray}{0.95}为清楚起见,包括了第 5-7 段模拟内容)

\documentclass{article}
\usepackage{color}
\definecolor{white}{gray}{1}
\definecolor{gray}{gray}{0.95}
\begin{document}

1. black text on default background

2. \textcolor{white}{white text on default background}

3. \colorbox{white}{black text on white background}

4. \colorbox{white}{\textcolor{white}{white text on white background}}

5. \textcolor{gray}{gray text on default background}

6. \colorbox{gray}{black text on gray background}

7. \colorbox{gray}{\textcolor{gray}{gray text on gray background}}

\end{document}

生成的 pdf 输出

相关内容