I have a question. I'm writing my thesis and I use a custom cover page using the \includepdf command, then I start the document, but I think this command adds an extra blank page after using it.. Check my code out:
\documentclass[letterpaper,12pt,openany]{book}
\usepackage[spanish,mexico,es-lcroman]{babel}
\usepackage[utf8]{inputenc}
\usepackage{pdfpages}
\begin{document}
\thispagestyle{empty}
\includepdf[pages=1]{portada_tesis.pdf} %the cover page, after it the blank page is added
\maketitle %another filled page
\thispagestyle{empty}
The document text starts here...
\end{document}
Do you guys know why that happen and how to avoid the extra page ?
openrightandopenanywhich do you want? the first means chapters start on the right hand page, the second means they may be on either page. – David Carlisle Sep 29 '19 at 23:32