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
Page Layout ⇒ LoF and LoT on one page
- localghost
- Site Moderator
- Posts: 9201
- Joined: Fri Feb 02, 2007 12:06 pm
LoF and LoT on one page
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
[1] View topic: No page break after \listoffigures
Best regards
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
LoF and LoT on one page
This was many, many days ago. Am facing the same problem this week and have used this solution from the post you suggested:
Problem solved. Thanx!
Code: Select all
Code, edit and compile here:
\begin{document}\tableofcontents\clearpage\begingroup\let\cleardoublepage\relax % book\let\clearpage\relax % report\listoftables\listoffigures\endgroup\chapter{A chapter}... text, figures, tables...\end{document}