Hi,
I would like to include a table with highlighted rows into my thesis, so I am trying to load the
colortbl package. Unfortunately, when I add \usepackage{colortbl} to my preamble, I get the following error:
Code: Select all
<figs/ch_background/radon.eps>
! Too many }'s.
\color@endbox ->\color@endgroup \egroup
l.29 \end{figure}
From doing some digging around on Google, I gather that this is probably due to some kind of conflict between the color package (used by colortbl) and
graphicx, which I am using to include all my figures. The error occurs at the first invocation of \includegraphics in my document, which seems to support this theory. Unfortunately, I can't figure out how to resolve this issue! Right now in my preamble I have:
Code: Select all
\usepackage{colortbl}
\usepackage{graphicx}
(in addition to a bunch of other package inclusions, definitions, etc.) I have tried switching the order of the statements, passing in a few options, etc. but nothing has worked.

Any suggestions would be appreciated!