Hi again, in my books I often use \startstandardmakeup for the initial pages. A typical use case is a bastard title (half-title) on the first page and the copyright information (imprint) on the second, like in this MWE: \setuppagenumbering[ alternative=doublesided, ] \starttext \startstandardmakeup[align=center] bastard title \stopstandardmakeup \startstandardmakeup[page=left] \vfill imprint \stopstandardmakeup \stoptext With a doublesided layout, the second (left) page is preceded by two empty pages. How can I avoid that? Greetlings, Hraban --- https://www.fiee.net http://wiki.contextgarden.net https://www.dreiviertelhaus.de GPG Key ID 1C9B22FD
Il 29/08/19 16:33, Henning Hraban Ramm ha scritto:
\setuppagenumbering[ alternative=doublesided, ]
\starttext
\startstandardmakeup[align=center] bastard title \stopstandardmakeup
\startstandardmakeup[page=left] \vfill imprint \stopstandardmakeup
\stoptext
\setuppagenumbering[ alternative=doublesided, ] \definemakeup[title-page][align=middle,doublesided=no,pagestate=start] \definemakeup[imprint][align=top,page=no,pagestate=start] \starttext \startmakeup[title-page] bastard title \stopmakeup \startmakeup[imprint] \vfill imprint \stopmakeup \stoptext Best wishes, Massimiliano
\setuppagenumbering[ alternative=doublesided, ] % use pagestate=start on both makeups only if you want the title page % to be the page 1 of the book \definemakeup[title-page][align=middle,doublesided=no] \definemakeup[imprint][align=top,page=no] \starttext \startmakeup[title-page] bastard title \stopmakeup \startmakeup[imprint] \vfill imprint \stopmakeup This is the beginning of the book... \stoptext
Am 2019-08-29 um 16:58 schrieb mf
: \setuppagenumbering[ alternative=doublesided, ]
% use pagestate=start on both makeups only if you want the title page % to be the page 1 of the book \definemakeup[title-page][align=middle,doublesided=no]
Thank you! I don’t know why I didn’t look into the command reference myself, sorry. I’m probably too tired. Greetlings, Hraban --- https://www.fiee.net http://wiki.contextgarden.net https://www.dreiviertelhaus.de GPG Key ID 1C9B22FD
participants (2)
-
Henning Hraban Ramm
-
mf