Your problem is that all chapters, regardless of whether they are in the application or not, by default start on an odd-numbered page when you are in duplex layout mode. Several possible solutions:
The easiest solution is to use the openany parameter for your document class, which causes the chapters to run on the next page, whether it is an odd or even page. This is supported in a standard book class, for example \documentclass[openany]{book} . ( memoir also supports this as an \openany , which can be used in the middle of a document to change behavior for subsequent pages.)
Another option is to try to run the \let\cleardoublepage\clearpage in front of your applications to avoid behavior.
Or, if you don't like using a two-sided layout, using the oneside option for your documentclass (for example, \documentclass[oneside]{book} ) will switch to using a one-sided layout.
Noah Jan 29 '09 at 15:44 2009-01-29 15:44
source share