HI, That s about it?
views:
6403answers:
3Your problem is that all chapters, whether they're in the appendix or not, default to starting on an odd-numbered page. You can try the \let\cleardoublepage\clearpage
command before your appendices to clear this behavior or use a different document class (try memoir maybe?).
Are you using a \documentclass
that uses two-sided printing (like book
)? If so, the blank pages are probably the result of a \cleardoublepage
in the \chapter
definition.
The easy cure is to switch \documentclass
es. If you want that behavior in the main text, but not in the end matter, look on CTAN for and class that will help ('fraind I don't know the one you want).
If you specify the option 'openany' in the \documentclass declaration each chapter in the book (I'm guessing you're using the book class as chapters open on the next page in reports and articles don't have chapters) will open on a new page, not necessarily the next odd-numbered page.
Of course, that's not quite what you want. I think you want to set openany for chapters in the appendix. 'fraid I don't know how to do that, I suspect that you need to roll up your sleeves and wrestle with TeX itself