Theses, Books, Title pagesRemove Line Break in List of Figures

Classicthesis, Bachelor and Master thesis, PhD, Doctoral degree
Post Reply
felixerdy
Posts: 1
Joined: Mon Jan 07, 2019 11:45 am

Remove Line Break in List of Figures

Post by felixerdy »

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
Attachments
Bildschirmfoto 2019-01-07 um 10.53.01.png
Bildschirmfoto 2019-01-07 um 10.53.01.png (44.88 KiB) Viewed 4058 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Remove Line Break in List of Figures

Post by Johannes_B »

Welcome to the forum.

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.
Post Reply