I am using a template to write my thesis and I got something like that which is shown in the image when it automatically generates list of figures. How can I fix that? I am also enclosing the part which I believe is the source of problem in the class file.
\newcommand\listoffigures{%
\if@twocolumn
\@restonecoltrue\onecolumn
\else
\@restonecolfalse
\fi
\chapter{\listfigurename}%
\vspace{10pt}
\@mkboth{\MakeUppercase\listfigurename}%
{\MakeUppercase\listfigurename}%
\@starttoc{lof}%
\if@restonecol\twocolumn\fi
}
All the packages I use is:
\usepackage{subfigure}
\usepackage{graphicx}
\usepackage{epsfig}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{verbatim}
\usepackage{array}
\usepackage{setspace}
\usepackage{balance}
\usepackage{picins}
\usepackage{eqparbox}
\usepackage[export]{adjustbox}
There is also something defined like this on the beginning of the latex class file that I am using.
\def\ext@figure{lof}
Please show me which parts do I need to change in order to give some space between figure names and the explanations? I am good at programming but no clue about latex at all. Please state which parts do I need to change clearly.
A working example of the template for thesis can be downloaded from below:
http://www.students.graduate.ucf.edu/WorkArea/DownloadAsset.aspx?id=1464
(I have edited the post according to the comments)
Thanks

Figurereference. – Werner Sep 23 '15 at 21:49Figureprefix and the gap between the number and caption (in the LoF). You may have to set the counters like\setcounter{figure}{20}in order to get an appropriately sized (big) figure number, but still. The current code snippets don't really provide enough context. – Werner Sep 24 '15 at 17:57tocloftpackage (for the documentation trytexdoc tocloft) – Peter Wilson Sep 25 '15 at 17:42