为什么以下使用 rowcolor 在表格中不起作用?

为什么以下使用 rowcolor 在表格中不起作用?
\documentclass{article}

\usepackage{colortbl,xcolor}

\definecolor{amber}{rgb}{1.0, 0.75, 0.0}

\begin{document}

\begin{tabular}{l}
\rowcolor[amber]{0.9} xx
\end{tabular}

\end{document}

我收到一条错误消息,称未定义琥珀色的颜色模型。我在这里查找了颜色模型https://en.wikibooks.org/wiki/LaTeX/Colors#Color_Models并且看起来我的定义是正确的。

相关内容