Tagged Questions
5
votes
1answer
543 views
Option clash for package xcolor
Im doing a report, and having a rather large table in my appendix. And want to emphasize some specific values by coloring some single cells. I'm trying to do it with xcolor. But receiving the error:
...
0
votes
1answer
261 views
How to resolve option clash for package xcolor? [duplicate]
Possible Duplicate:
Option clash with xcolor and TikZ
The following is my MWE:
\documentclass{article}
\usepackage{tikz}
\usepackage[table]{xcolor}
\begin{document}
Hi!
\end{document}
...
13
votes
2answers
2k views
Option clash with xcolor and TikZ
I want to draw some coloured circles, so I loaded tikz in my preamble. However, now xcolor is telling me that it has an "option clash". How should I fix this?
\documentclass{article}
...
3
votes
1answer
770 views
\RequirePackage without option clashes because of the package loading order?
I am writing a package which requires the xcolor package with table option.
It is loaded in the package with
\PassOptionsToPackage{table}{xcolor}
\RequirePackage{xcolor}
which works if my package ...