如何在 \special 中使用专色进行 dvi -> ps -> pdf?

如何在 \special 中使用专色进行 dvi -> ps -> pdf?

我有一些使用该picture环境的旧图形。要编译这些图形,我必须使用dvi->dvips->ps2pdf工具链。

我需要将这些图片中的颜色从rgb模型颜色更改cmyk为 pantone 颜色。使用这个问题,我设法定义了专色。我的问题是,如果我直接在\special宏中使用它,pdf 查看器 (evince) 会将其显示为黑色。

我应该如何告诉 dvips 使用定义的专色?

平均能量损失

\begin{filecontents*}{spot_color.pro}
TeXDict begin
/RedSpotCMYK [0 1 0 0] def
/RedSpotSpot (RedSpot) def
/RedSpotDef RedSpotCMYK aload pop RedSpotSpot findcmykcustomcolor def
/XC@RedSpot{RedSpotDef 1.0 setcustomcolor}XCdef
end
\end{filecontents*}

\documentclass{minimal}
\usepackage[prologue]{xcolor}

\usepackage[tightpage,active,psfixbb]{preview}
\setlength\PreviewBorder{2mm}
\PreviewEnvironment{picture}

\definecolor{RedSpot}{cmyk}{0 1 0 0}

\usepackage{eepic}

\begin{document}
\setlength{\unitlength}{0.254mm}
\begin{picture}(340,225)(100,-420)
  % This compiles but arrow shows black
  \special{RedSpot 1}\allinethickness{0.508mm}\path(110,-395)(170,-300)\special{sh 1}\path(170,-300)(167,-302)(168,-303)(169,-304)(170,-300) % Plain Solid Arrow
  % This has compilation error:
  % ps2pdf spotcolor-picture.ps
  % Error: /undefined in TeXcolorRedSpot
  % \special{color RedSpot 1}\allinethickness{0.508mm}\path(110,-395)(170,-300)\special{sh 1}\path(170,-300)(167,-302)(168,-303)(169,-304)(170,-300) % Plain Solid Arrow
  % With the CMYK model it shows correctly
  %  \special{color cmyk 0 1 0 0}\allinethickness{0.508mm}\path(110,-395)(170,-300)\special{sh 1}\path(170,-300)(167,-302)(168,-303)(169,-304)(170,-300) % Plain Solid Arrow
   \special{color cmyk 1 0 0 0}\allinethickness{0.508mm}\path(110,-395)(380,-310)\special{color cmyk 1 0 0 0}\path(380,-310)(377,-310)(377,-311)(377,-312)(380,-310) % Plain Solid Arrow
\end{picture}

\end{document}

我使用以下命令进行编译

latex spotcolor-picture.tex
dvips -h tex.pro -h xcolor.pro -h spot_color.pro spotcolor-picture.dvi
ps2pdf spotcolor-picture.ps

答案1

你的颜色名称是XC@RedSpot,你不能在特殊颜色内使用任意单词,它们通常是关键字。如果你想插入后记,你可以使用ps: keyword

以下似乎有效(我删除了预览和其他颜色,它们使测试变得复杂)。

\begin{filecontents*}{spot_color.pro}
TeXDict begin
/RedSpotCMYK [0 1 0 0] def
/RedSpotSpot (RedSpot) def
/RedSpotDef RedSpotCMYK aload pop RedSpotSpot findcmykcustomcolor def
/XC@RedSpot{RedSpotDef 1.0 setcustomcolor}XCdef
end
\end{filecontents*}

\documentclass{article}
\usepackage{eepic}
\begin{document}
\setlength{\unitlength}{1mm}
abc 
\begin{picture}(10,10)
\special{ps:  XC@RedSpot 1 setcolor} 
\put(0,0){\line(1,1){10}}
\put(0,10){\line(1,-1){10}}
\end{picture}
\end{document}

在此处输入图片描述

这似乎也有效(但你不能给颜色添加色调:

\begin{picture}(10,10)
\special{color push  XC@RedSpot} 
\put(0,0){\line(1,1){10}}
\put(0,10){\line(1,-1){10}}
\special{color pop   XC@RedSpot}
\end{picture}

相关内容