Guest User

Untitled

a guest
May 6th, 2020
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.65 KB | None | 0 0
  1. \documentclass{report}
  2.  
  3. \usepackage{tocloft}
  4.  
  5. % https://tex.stackexchange.com/a/12869/5764
  6. \newlength{\mylen}
  7. \setlength{\cftfigindent}{0pt}
  8. \renewcommand{\cftfigpresnum}{\figurename\enspace}
  9. \renewcommand{\cftfigaftersnum}{.}
  10. \settowidth{\mylen}{\cftfigpresnum\cftfigaftersnum}
  11. \addtolength{\cftfignumwidth}{\mylen}
  12.  
  13. \begin{document}
  14.  
  15. \listoffigures% Set the List of Figures
  16.  
  17. \chapter{A chapter}
  18.  
  19. \begin{figure}
  20.  \caption{First figure}
  21. \end{figure}
  22.  
  23. \begin{figure}
  24.  \caption{Second figure}
  25. \end{figure}
  26.  
  27. \begin{figure}
  28.  \caption{Third figure}
  29. \end{figure}
  30.  
  31. \begin{figure}
  32.  \caption{Last figure}
  33. \end{figure}
  34.  
  35. \end{document}
Add Comment
Please, Sign In to add comment