I use \documentclass[12pt,openany]{book} on a MAC 10.9.2 running LaTeX TeXshop 3.35. How do I suppress the new page command which seems imbedded in the macros \tableofcontents, \listoffigures, \listoftables?
Thanks
I use \documentclass[12pt,openany]{book} on a MAC 10.9.2 running LaTeX TeXshop 3.35. How do I suppress the new page command which seems imbedded in the macros \tableofcontents, \listoffigures, \listoftables?
Thanks
This is not very usual. You can locally \let the \clearpage command internally used to be \relax:
\documentclass[12pt,openany] {book}
\begin{document}
\begingroup
\let\clearpage\relax
\tableofcontents
\listoffigures
\listoftables
\endgroup
\end{document}

\begingroup \let\clearpage\relax \tableofcontents \listoffigures \listoftables \endgroup– Gonzalo Medina May 10 '14 at 00:14\listoffiguresand\listoftableson one page and in the ToC? – Werner May 10 '14 at 00:30