--
You received this message because you are subscribed to the Google Groups "LaTeX Users Group" group.
To post to this group, send email to latexus...@googlegroups.com.
To unsubscribe from this group, send email to latexusersgro...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/latexusersgroup?hl=en.
I'm having the exactly same problem than this guy (http://www.latex-community.org/forum/viewtopic.php?f=47&p=55210),Here you have the problem:My final version of thesis must adhere to a standard, set by my school.
I am facing a problem, as an additional empty page is inserted at the end of the thesis (this makes the total pages in the thesis to be even). I have several hypothesis for the problem, but no solution. I hope one of you could be able to help.
My thesis skeleton looks like this
\documentclass[a4paper,11pt,twoside,openright]{report}
Hello Peter and thanks for your answer..;In fact, I have to add two pages to my document. what happens is that when I add them (two \includepdf ), the output has 3 more pages instead of two more pages...If I add only one \includepdf, the output has two more pages instead of a single one.It seems that no matter the number of \includepdf I add, I always get and additional empty page with the header of the last section (The bibliography in this case.)Any guesses??
It could be that ThesisBackPage.pdf has more than one page. This is highly unlikely, as it is an obvious check which most likely know _not_ to be the case.
It could also be that you load some other package which executes something \AtEndDocument, which could insert more content and cause the additional page to be inserted. So...1) Does the same happen when you have a document containing only
\documentclass[a4paper,11pt,twoside,openright]{report}\usepackage{pdfpages}
\begin{document}\clearemptydoublepage %to start the ThesisBackPage on an odd page.
\includepdf[pages=1]{ThesisBackPage.pdf}
\end{document}
Please note that the only way to assess the problem is if we can reproduce it. The standard report document class does not yield the results your specifying, so there must be something else that you are doing/loading.