I am using the chemscheme package to define the float called scheme. I have added the line
\renewcommand{\thescheme}{\arabic{section}.\arabic{scheme}}
to number the schemes by chapter, and the line \listofschemes
to add a list of schemes page.The resulting list of schemes is however not formatted like the others. For example the list of figures looks like this: and the list of schemes looks like this: How do I get the appearance for the list of schemes to show "Scheme" and "Page"?
Here's what I tried-
The custom class that I am using has this code for the toc page:
Code: Select all
\renewcommand\listoffigures{%
\section*{\listfigurename}
\noindent \underln{Figure} \hfill \underln{Page} \par
\vspace{18pt}
\begin{spacing}{1}
\@starttoc{lof}
\end{spacing}}
Code: Select all
\contentsline {scheme}{\numberline {5.1}{\ignorespaces Caption for scheme}}{25}

Edit: corrected code.