[Tex/LaTex] Spacing problem at List of Figures

floatshorizontal alignmentlyxspacingtable of contents

I use Lyx 2.1, document class : Report.
My problem is that the titles of figures are written on the numbers at List of Figures.
enter image description here

Best Answer

Loading the tocloft package and using the macro \cftsetindents for figure and table items should do the job. Specifically, you could add the following code to your document's preamble:

\usepackage[titles]{tocloft}
\cftsetindents{figure}{0em}{3.5em}
\cftsetindents{table}{0em}{3.5em}

The second \cftsetindents instruction, i.e., the resetting of the indentation amount for the entries in the List of Tables, isn't strictly necessary for your document. However, doing so may be appropriate to keep the appearance of the List of Tables in sync with that of the List of Figures.

You're of course free to adjust the indentation amount (3.5em) to suit your preferences.