Page LayoutLoF and LoT on one page

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
mina
Posts: 12
Joined: Sun Jul 12, 2009 4:48 pm

LoF and LoT on one page

Post by mina »

Hi,

I like to use the report class when writing my reports. It is very suitable for the format my teachers would like to see. However, I cannot seem to put the list of tables and the list of figures on the same page! Whatever I try, they are both on seperate pages. After a long time googling all I found was the reverse, where people using the article class needed to split op the lot and lof. Can anyone point me in the right direction?

Greetz,
Mina

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

LoF and LoT on one page

Post by localghost »

This issue has already been discussed in another topic [1]. I think the solution suggested by phi should be very useful for you, too.

[1] View topic: No page break after \listoffigures


Best regards
Thorsten
mina
Posts: 12
Joined: Sun Jul 12, 2009 4:48 pm

LoF and LoT on one page

Post by mina »

This was many, many days ago. Am facing the same problem this week and have used this solution from the post you suggested:

Code: Select all

\begin{document}
\tableofcontents
\clearpage
\begingroup
  \let\cleardoublepage\relax  % book
  \let\clearpage\relax        % report
  \listoftables
  \listoffigures
\endgroup
\chapter{A chapter}
... text, figures, tables...
\end{document}
Problem solved. Thanx!
Post Reply