I am using the following:
\documentclass[11pt,letterpaper,landscape]{article}
\usepackage[utf8]{inputenc}
\usepackage{epstopdf}
\usepackage{amsmath,amsfonts,amssymb}
\usepackage{mathtools}
\usepackage[makeroom]{cancel}
\usepackage{graphicx,rotating}
\usepackage{subfig}
\linespread{1.15}
\setlength\parindent{0pt}
\usepackage{enumitem} \setlist[itemize,enumerate]{leftmargin=*} \usepackage{float}
\usepackage{multicol} \setlength{\columnsep}{0.25in}
\usepackage[super]{nth} % enable typing 1st, 2nd, 3rd, etc
\usepackage[colorlinks=true, bookmarks=true, %backref,
%bookmarksnumbered=false,
breaklinks={true},
linkcolor={blue},
anchorcolor={black},
citecolor={green},
filecolor={black},
menucolor={blue},
plainpages=false,pdfpagelabels,
urlcolor={blue}]{hyperref}
\usepackage[left=0.75in,right=0.75in,top=0.75in,bottom=0.75in]{geometry}
\usepackage{color}
\date{}
\begin{document}
\maketitle
\begin{figure} \centering
\subfloat[]{\includegraphics[width=7in]{TF_15d1b}} \\
\subfloat[]{\includegraphics[width=7in]{TF_15d1c}}
\end{figure}
\begin{figure} \centering
\subfloat[]{\includegraphics[width=7in]{TF_15d1b}} \\
\subfloat[]{\includegraphics[width=7in]{TF_15d1c}}
\end{figure}
\end{document}
The subcaptions for the first three subfloats are ok as (a) and (b) However, for the next set of figures (subfloats) the captions instead of starting with (a), they start with (c) and continue as (d). I really cannot see what I am doing wrong. Can some one suggest something. I am using MacTex 2014 with Texmaker.
Thanks
.logafter**File List**in your post as an edit. – Werner Apr 30 '15 at 23:11subfigdoesn't behave well withhyperrefand thatsubcaptionis to be preferred in this case, unless your document class is not compatible with thecaptionpackage (which is not the case witharticle). – egreg May 01 '15 at 09:52