I'm using the masters-doctoral-thesis template. After adding multiple figures I identified line breaks in the List of Figures. It seems like LaTeX is adding this line break after each chapter. Any idea how to remove these line breaks?
Thanks
Theses, Books, Title pages ⇒ Remove Line Break in List of Figures
Remove Line Break in List of Figures
- Attachments
-
- Bildschirmfoto 2019-01-07 um 10.53.01.png (44.88 KiB) Viewed 4058 times
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Remove Line Break in List of Figures
Welcome to the forum.
Remove spacing between per-chapter figures in LoF
Remove spacing between per-chapter figures in LoF
Code: Select all
\usepackage{etoolbox}% http://ctan.org/pkg/etoolbox
\makeatletter
% \patchcmd{<cmd>}{<search>}{<replace>}{<succes>}{<failure>}
\patchcmd{\@chapter}{\addtocontents{lof}{\protect\addvspace{10\p@}}}{}{}{}% LoF
\patchcmd{\@chapter}{\addtocontents{lot}{\protect\addvspace{10\p@}}}{}{}{}% LoT
\makeatother
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.