Is there a way to remove blank pages appearing between two chapters, in Appendix?
Is there a way to remove blank pages appearing between two chapters, in Appendix?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Your problem is that all chapters, whether they’re in the appendix or not, default to starting on an odd-numbered page when you’re in two-sided layout mode. A few possible solutions:
The simplest solution is to use the
openanyoption to your document class, which makes chapters start on the next page, irrespective of whether it’s an odd or even numbered page. This is supported in the standard book documentclass, eg\documentclass[openany]{book}. (memoiralso supports using this as a declaration\openanywhich can be used in the middle of a document to change the behavior for subsequent pages.)Another option is to try the
\let\cleardoublepage\clearpagecommand before your appendices to avoid the behavior.Or, if you don’t care using a two-sided layout, using the option
onesideto yourdocumentclass(eg\documentclass[oneside]{book}) will switch to using a one-sided layout.