I have a problem for a while now: there is always an extra page at the end of my documents. I notice that this happens when I use simultaneously minitoc and float.
I track this issue down to this minimal code :
\documentclass{report}
\usepackage{float}
\usepackage{minitoc}
\begin{document}
\end{document}
I can compile this without any error and it generates an empty page with page number 1. (I use TeX Live 2013 on Linux, and I happens both with LaTeX and pdfLaTeX).
How can I simultaneously create tables of content by chapter and use the [H] option in \begin{figure}[H] ?
Update after egreg answer: here is a new minimal example with some text, that creates always a new page.
\documentclass{report}
\usepackage{float}
\usepackage{minitoc}
\begin{document}
\include{ch01}
\end{document}
You can put anything in ch01.tex and an extra page will be created.
[nohints]Option: – xHarti Jul 08 '15 at 12:32