2

When I put \usepackage{tocloft} in the preamble the pages that had list of figures and list of tables have been shifted forward. List of figures now starts on the contents page and list of tables starts on the list of figures page.

lockstep
  • 250,273

1 Answers1

6

With tocloft, the ToC, the LoT and the LoF don't start new pages when using document classes in which without the package they normally would do. If you want the lists to start a new page, you have two options:

  1. Manually issue a \cleardoblepage command. For example:

    \documentclass{book}
    \usepackage[titles]{tocloft}
    
    \begin{document}
    
    \tableofcontents
    \cleardoublepage
    \listoffigures
    \cleardoublepage
    \listoftables
    \cleardoublepage
    
    \end{document}
    
  2. Use the titles package option:

    \documentclass{book}
    \usepackage{tocloft}
    
    \begin{document}
    
    \tableofcontents
    \listoffigures
    \listoftables
    
    \end{document}
    

The difference between both approaches is that the second one will make the titles of the LoF, LoT and LoF to follow any possible modification made to the formatting of the sectional unit producing the titles.

Gonzalo Medina
  • 505,128