I am trying to increase my access to a larger palette of predefined colors. One way to do that is outlined in the LaTeX Wikibook (Section 8, p. 87 ff. of the pdf version, corresponding online version), by calling the xcolor package with options, thus:
...
\usepackage{graphicx}
\usepackage[usenames,dvipsnames,svgnames,table]{xcolor}
...
This didn't work. Checking the Xcolor manual (section 2.1.2, p.7) says that "usenames" is an obsolete option.
So I tried these variations without "usenames", and none of them work: ...
\usepackage[dvipsnames,svgnames,table]{xcolor}
\usepackage[dvipsnames,table]{xcolor}
\usepackage[dvipsnames,svgnames]{xcolor}
\usepackage[dvipsnames]{xcolor}
...
I am also getting an error message after compiling, "cannot find dvips.sty".....this despite the fact that I've used the the Texlive complete distribution just two weeks ago.
Any ideas about what is going amok here?


dvips.styand I believe there has never been such a file in the TeX distributions. – egreg Jan 02 '23 at 14:42