我无法使用xcolor
包中的灰色颜色模型设置文本颜色。下面的 M(NW)E 导致“非法测量单位(插入 pt)”错误:
\documentclass[a4paper, 12pt]{article}
\usepackage{xcolor}
\begin{document}
\textcolor[Gray]{10}{text}
\end{document}
有人知道如何正确使用灰色模型吗?
答案1
实际上 hyperref (或者更准确地说 hycolor/xcolor-patch.sty) 包含一个针对此问题的补丁
\documentclass{book}
\usepackage{xcolor}
\usepackage{hyperref}
\pagestyle{empty}
\begin{document}
\textcolor[Gray]{10}{text}
abc
\end{document}
答案2
您需要使用gray
小写名称,并使用 0.1 而不是 10(如果您指的是百分比)
看这里 :https://en.wikibooks.org/wiki/LaTeX/Colors
这应该有效:
\documentclass[a4paper, 12pt,svgnames]{article}
\usepackage{xcolor}
\begin{document}
\textcolor[gray]{0.1}{text}
\end{document}