I am using LyX and the report class. (KOMA-Script). My List of Figures just prints the figure number and its caption but not the word Figure infront. How could I modify the command in the Latex preamble?
Asked
Active
Viewed 2,149 times
0
1 Answers
1
You can simple use the KOMA-Option listof=entryprefix. There are to possibilities:
\documentclass[listof=entryprefix]{scrreprt}
or
\documentclass{scrreprt}
\KOMAoptions{listof=entryprefix}

\documentclass{scrreprt}
\KOMAoptions{listof=entryprefix}
\begin{document}
\listoffigures
\chapter{First chapter}
\begin{figure}[!ht]
\centering
\rule{2cm}{2cm}
\caption{test figure one}
\label{fig:test1}
\end{figure}
\begin{figure}[!ht]
\centering
\rule{2cm}{2cm}
\caption{test figure two}
\label{fig:test2}
\end{figure}
\end{document}
esdd
- 85,675
\documentclass{...}and ending with\end{document}. – Apr 22 '14 at 11:00