I am formatting my thesis and need the LOF to have single spaced figure titles, then be double spaced between entries. The code to create the LOF is below:
Code: Select all
% Define the list of figures command if color is used.
\newcommand\listfigurenamecolor
{\begin{center}
{\large LIST OF FIGURES}\\
{\normalsize \rm Images in this \MakeLowercase\type\ are presented in color}
\end{center}}
\newcommand\listoffigurescolor{%
\if@twocolumn
\@restonecoltrue\onecolumn
\else
\@restonecolfalse
\fi
\chapter*{\listfigurenamecolor}
\addcontentsline{toc}{section}{\textbf{List of Figures}\vspace{\baselineskip}}%
\@mkboth{\MakeUppercase\listfigurename}%
{\MakeUppercase\listfigurename}%
\begin{singlespace}
\@starttoc{lof}%
\if@restonecol\twocolumn\fi
\end{singlespace}
}
Can anyone help me format this LOF properly?