When I'm generating a List of Figures in my project, all figures are grouped by chapter. I would like to have the whole list without any additional new lines between different chapters.
How it looks like:
Figure 1.1
Figure 1.2
Figure 2.1
Figure 3.1
Figure 3.2
How it should:
Figure 1.1
Figure 1.2
Figure 2.1
Figure 3.1
Figure 3.2
I tried to apply the following solutions but failed completely :
My main file:
\documentclass[12pt,oneside,titlepage,utf8x]{report}
\usepackage{times,a4wide,multirow,tabularx,graphicx}
\usepackage{psfrag,fancyhdr,longtable}
\usepackage[T1]{fontenc}
\usepackage{float}
\usepackage[utf8]{inputenc}
\usepackage{url}
\usepackage{color}
\usepackage{verbatim}
\usepackage{fancyvrb}
\usepackage{natbib}
\usepackage{relsize}
\usepackage{caption}
\captionsetup[longtable]{belowskip=10pt}
\usepackage[left=4cm,top=2cm,right=3cm,bottom=2.5cm]{geometry}
\renewcommand{\chaptermark}[1]{\markboth{\nouppercase{\thechapter.\ #1}}{}}
\pagestyle{fancy}
\headheight 30pt
\rhead{}
\lfoot{}
\cfoot{\thepage}
\rfoot{}
\setlength{\parindent}{2em}
\setlength{\parskip}{1em}
\linespread{1.3}
\begin{document}
\begin{titlepage}
\maketitle
\end{titlepage}
\tableofcontents
\chapter{First}
\label{sec:First}
\input{chapter1/chapter1}
\chapter{Second}
\label{sec:Second}
\input{chapter2/chapter2}
\chapter{Third}
\label{sec:Third}
\input{chapter3/chapter3}
\relsize{-1}
\listoffigures
\normalsize
\bibliography{praca_mgr}
\bibliographystyle{plain}
\nocite{*}
\end{document}

classicthesispackage and thescrreprtclass feature a way for disabling the added space, whilereportdoesn't. Don't loada4widewhich is dangerous; alsotimesshould bemathptmx; remove theutf8xoption from the\documentclassline. Do you really needpsfrag? If not leave it alone. – egreg Jun 30 '13 at 21:00