-
Notifications
You must be signed in to change notification settings - Fork 114
Open
Milestone
Description
This is an extraction from arXiv:1912.05909. In that article, an independent .sty package loads xcolor without options. Later in the preamble, an explicit second load of xcolor - this time with dvipsnames
takes place. Interestingly, that load appears to execute and the options activate, so that the NavyBlue
color name is recognized.
In latexml, I beleieve once xcolor has been loaded once, the second load is ignored. A bit of a puzzle how best to upgrade the options processing to get parity.
\documentclass{article}
% initially due to some foo.sty dependency
\usepackage{xcolor}
% it appears to activate despite being the second load:
\usepackage[dvipsnames]{xcolor}
\begin{document}
\textcolor{NavyBlue}{test}
\end{document}