在我的文档中,我使用的颜色lightgray
在屏幕上看起来不错,但在打印时(使用黑白激光打印机)几乎无法辨认。使用 pkg xcolor
:
lightgray
尝试将其转换为更易读的等效值\convertcolorspec
是否有意义cmyk
印刷结果?- 这是否需要选择一个更暗颜色,或者可以选择
cmyk
1:1 的等效颜色lightgray
,看起来与原件lightgray
一模一样屏幕? - 如果是,如何编码?
一个非常简单的 MWE:
\documentclass{article}
\usepackage{lipsum}
\usepackage{xcolor}
\begin{document}
\lipsum[6]
{\textcolor{lightgray} {\lipsum[3]}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%% Some more or less random snippets from the xcolor manual %%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% \extractcolorspec{lightgray}\tmpa
% \expandafter\convertcolorspec\tmpa{cmyk}\tmpb
% \expandafter\convertcolorspec\tmpa{RGB}\tmpc
% {\textcolor{\extractcolorspec{lightgray}{\tmpa\expandafter\convertcolorspec\tmpa{cmyk}\tmpb}}{\lipsum[2]}}
% \convertcolorspec
%%%%%%%%%%%%%%%%%%%%%%%%%
% Colors via svgnames option
% LightSlateGray
% LightSlateGrey
% Silver
%%%%%%%%%%%%%%%%%%%%%%%%%
% - enhanced color definition syntax to allow for target-model specific color parameters, e.g., \definecolor {red}{rgb/cmyk}{1,0,0/0,1,1,0}, facilitating the usage of tailor-made colors both for displays and printers;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\end{document}
也可以看看这里。