I'm trying to use a package that imports color with the dvipsnames,usenames options. Unfortunately, my document uses the ACM format, which appears to already import the color package with no options.
The following file:
\documentclass[acmlarge,dvipsnames,usenames]{acmart}
\usepackage{booktabs} % For formal tables
\RequirePackage[dvipsnames,usenames]{color}
% Document starts
\begin{document}
% Title portion
\title{A Multifrequency MAC Specially Designed for Wireless Sensor
Network Applications}
\titlenote{We can add a note to the title}
\maketitle
Body
\end{document}
Gives the following, highly unhelpful error error:
LaTeX Error: Option clash for package color.
Is this a known problem? Is there an easy workaround for importing packages that conflict in their options?
\documentclass– David Carlisle Apr 05 '18 at 23:13hat the error prompt gets a more helpful text including the offending options. – Heiko Oberdiek Apr 05 '18 at 23:24xcolorinstead ofcolor. – Heiko Oberdiek Apr 05 '18 at 23:27usenamesis obsolete: it's now the default. – Bernard Apr 05 '18 at 23:56