I know hyperref is a problematic package and there are many discussion on how to avoid potential problems.
However, in this small piece of code, I am not event loading any package, and yet, I get the option clash error for the hyperref package.
Can someone please help me figure out what the problem is? If I can get this one to work, I will try my main document with many packages!
\documentclass[12pt]{report}
\usepackage{hyperref}
\hypersetup{urlcolor=blue}
\begin{document}
\chapter{chapter one}
Figure \ref{fig1} shows ...
\begin{figure}
\centering
FIGURE HERE!
\caption{caption for figure one}
\label{fig1}
\end{figure}
\end{document}

