我想知道是否可以将最终文本颜色设置为某个 rgb psfrag
?这个:
\psfrag{D}[lc][lc][0.85]{\color[rgb]{0, 110, 180}{Deuterium}}
不管用。
谢谢!
答案1
你的例子产生了错误
! Package color Error: Argument ` 110' not in range [0,1].
该rgb
模型采用 0-1 范围内的值,您似乎正在寻找采用 0-255 范围内的整数的 RGB。
d.eps
%!PS-Adobe-3.0 EPSF-3.0
%%BoundingBox: 0 0 50 50
/Times-Roman findfont 10 scalefont setfont
10 10 moveto
(D) show
10 30 moveto
(E) show
showpage
tex 包括 EPS 不变,然后再次psfrag
\documentclass{article}
\usepackage{color,psfrag}
\begin{document}
\includegraphics{d.eps}
\psfrag{D}[lc][lc][0.85]{\color[RGB]{0, 110, 180}{Deuterium}}
\includegraphics{d.eps}
\end{document}