On Wed, Apr 9, 2008 at 4:29 PM, David C. Walden
Hi,
I have been searching contextgarden.net and the manuals at the Pragma website for more than an hour now, and I have yet to find a way to have ConTeXt decide in two-sided mode that the last page of a book chapter is a even numbered page without anything on it and therefore will also not have a page number. I probably can manually effect this by carefully inserting \setuppagenumber commands which start and stop the state, but that's not a very general solution. Will someone please point me to appropriate documentation or an example.
You could insert a empty page with \page[empty] or \startstandardmakeup ... \stopsatndardmakeup. Yould integrate this in the normal document structure. \startcomponent test \setuppagenumbering[alternative=doublesided] \startfrontmatter \startstandardmakeup Title Page \stopstandardmakeup \stopfrontmatter \startbodymatter .. document ... \stopbodymatter \startbackmatter \startstandardmakeup \stopstandardmakeup \stopbackmatter \stopcomponent Wolfgang