I have a long list of figures that spans two pages. My school's editor wants me to include 'figure page' at the top of the new page.
As far as I can tell, the below code is what pulls my list of figures, descriptions and page numbers and lists them out.
\def\listoffigures{\chapter*{List of Figures}
{\setlength{\parskip}{12\p@}
\@starttoc{lof}
}
\addtocontents{lof}{\noindent Figure\hfill Page\par}
}
\renewcommand*\l@table{\@dottedtocline{1}{0em}{2.3em}}
What I would like to have happen is, after figure 18 is displayed, I want latex to include the new page header. Something like this:
psuedo code:
if figure_number = 18
%do this code
{\noindent Figure\hfill Page\par}
In my list of figures, figure number 18 is the one at the top of the second page.
