I am writing a dissertation. I use graphicx package with
pdftex
option for figures (all PDFs). Everything was working fine until I added 'rotating' package to rotate some figures.I get the following error when I compile the document with 'rotating' package enabled.
Code: Select all
! Extra }, or forgotten \endgroup.
\color@endbox -egroup
1.19 \end{figure}
Any help is appreciated. Thanks
Code: Select all
\documentclass[12pt]{report}
\usepackage{nmsudiss} % Style file for dissertation
\usepackage[pdftex]{graphicx}
\usepackage{rotating}
\begin{document}
\begin{figure}[htbp]
\begin{center}
\mbox{
{\includegraphics[width=2in]{cat}}}
\caption{Cat}
\end{center}
\end{figure}
\end{document}