我已阅读手册并尝试
\setuphead
[chapter]
[page=right]
但它没有效果:-(
答案1
您可能使用单页布局。右页仅在双面布局中才有意义。以下方法有效:
\setuppagenumbering
[alternative=doublesided]
\setuphead
[chapter]
[page=right]
\starttext
\startsectionlevel [title=Foo]
\stopsectionlevel
\startsectionlevel [title=Bar]
\stopsectionlevel
\stoptext
或者,你可以使用以下方式定义自定义分页符\定义分页符。 例子:
\setuppagenumbering
[alternative=doublesided]
\definepagebreak
[chapterpagebreak]
[yes, right]
\setuphead
[chapter]
[pagebreak=chapterpagebreak]
\starttext
\startsectionlevel [title=Foo]
\stopsectionlevel
\startsectionlevel [title=Bar]
\stopsectionlevel
\stoptext