Graphics, Figures & Tables ⇒ LoF and LoT on the same page
-
- Posts: 6
- Joined: Thu Oct 28, 2010 7:59 pm
LoF and LoT on the same page
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
- Posts: 6
- Joined: Thu Oct 28, 2010 7:59 pm
Re: LoF and LoT on the same page?
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
LoF and LoT on the same page
- The global approach. This would mean to redefine the \chapter command regarding the prevention of page break.
These lines go into the document preamble. Note that this affects all chapters in your document. Probably needs manual adjustment by adding vertical space between chapters.
Code: Select all
\makeatletter \renewcommand{\chapter}{% % \if@openright\cleardoublepage\else\clearpage\fi % this the original from the »report« class \par% % this is the patch \thispagestyle{plain}% \global\@topnum\z@ \@afterindentfalse \secdef\@chapter\@schapter } \makeatother
- The local approach. Here we would turn off the effect of \cleardoublepage and \clearpage locally only for the concerned list.
Some vertical space between the lists might be suggestive.
Code: Select all
\listoffigures \begingroup \let\cleardoublepage\relax \let\clearpage\relax \listoftables \endgroup
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 6
- Joined: Thu Oct 28, 2010 7:59 pm