ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* how to interrupt doublesided in particular instance
@ 2020-05-05 23:31 jbf
  2020-05-06  3:57 ` Wolfgang Schuster
  0 siblings, 1 reply; 5+ messages in thread
From: jbf @ 2020-05-05 23:31 UTC (permalink / raw)
  To: ntg-context

Hi list,

I have a document set up in a standard way 
(\setuppagenumbering[alternative=doublesided]) to ensure that new 
chapters always begin on a recto page, but in one particular instance 
only, I want the new chapter to start on the next (verso) page instead 
of creating a blank then starting on the recto side.

I thought I might have been able to force that with \page[no] 
immediately after the previous chapter concluded or before \chapter{My 
new chapter}, but this command is ignored (and may well be the wrong 
command to achieve what I want).

Is there a way to interrupt the setup so the new chapter in this case 
can start on the verso page?

Julian

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: how to interrupt doublesided in particular instance
  2020-05-05 23:31 how to interrupt doublesided in particular instance jbf
@ 2020-05-06  3:57 ` Wolfgang Schuster
  2020-05-06  4:54   ` jbf
  0 siblings, 1 reply; 5+ messages in thread
From: Wolfgang Schuster @ 2020-05-06  3:57 UTC (permalink / raw)
  To: mailing list for ConTeXt users, jbf

jbf schrieb am 06.05.2020 um 01:31:
> Hi list,
>
> I have a document set up in a standard way 
> (\setuppagenumbering[alternative=doublesided]) to ensure that new 
> chapters always begin on a recto page, but in one particular instance 
> only, I want the new chapter to start on the next (verso) page instead 
> of creating a blank then starting on the recto side.
>
> I thought I might have been able to force that with \page[no] 
> immediately after the previous chapter concluded or before \chapter{My 
> new chapter}, but this command is ignored (and may well be the wrong 
> command to achieve what I want).
>
> Is there a way to interrupt the setup so the new chapter in this case 
> can start on the verso page?

Create a new heading for chapters which can start on left/right pages.

\setuppagenumbering[alternative=doublesided]

\definehead[mychapter][chapter]

\setuphead[mychapter][page=yes]

\starttext

\chapter{Right page}

\chapter{Right page}

\mychapter{New page}

\chapter{Right page}

\stoptext

Wolfgang

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: how to interrupt doublesided in particular instance
  2020-05-06  3:57 ` Wolfgang Schuster
@ 2020-05-06  4:54   ` jbf
  2020-05-06 14:33     ` Rik Kabel
  0 siblings, 1 reply; 5+ messages in thread
From: jbf @ 2020-05-06  4:54 UTC (permalink / raw)
  To: Wolfgang Schuster; +Cc: ntg-context

So simple, Wolfgang. Thanks. I had got close amid all the varieties I 
was trying out to achieve the same result. Perhaps my closest was: 
\setuphead[chapter][pagebreak=chapterverso], but it couldn't quite cut it!

Julian

On 6/5/20 1:57 pm, Wolfgang Schuster wrote:
> jbf schrieb am 06.05.2020 um 01:31:
>> Hi list,
>>
>> I have a document set up in a standard way 
>> (\setuppagenumbering[alternative=doublesided]) to ensure that new 
>> chapters always begin on a recto page, but in one particular instance 
>> only, I want the new chapter to start on the next (verso) page 
>> instead of creating a blank then starting on the recto side.
>>
>> I thought I might have been able to force that with \page[no] 
>> immediately after the previous chapter concluded or before 
>> \chapter{My new chapter}, but this command is ignored (and may well 
>> be the wrong command to achieve what I want).
>>
>> Is there a way to interrupt the setup so the new chapter in this case 
>> can start on the verso page?
>
> Create a new heading for chapters which can start on left/right pages.
>
> \setuppagenumbering[alternative=doublesided]
>
> \definehead[mychapter][chapter]
>
> \setuphead[mychapter][page=yes]
>
> \starttext
>
> \chapter{Right page}
>
> \chapter{Right page}
>
> \mychapter{New page}
>
> \chapter{Right page}
>
> \stoptext
>
> Wolfgang
>
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: how to interrupt doublesided in particular instance
  2020-05-06  4:54   ` jbf
@ 2020-05-06 14:33     ` Rik Kabel
  2020-05-06 21:12       ` jbf
  0 siblings, 1 reply; 5+ messages in thread
From: Rik Kabel @ 2020-05-06 14:33 UTC (permalink / raw)
  To: ntg-context


[-- Attachment #1.1: Type: text/plain, Size: 1680 bytes --]


On 5/6/2020 00:54, jbf wrote:
> So simple, Wolfgang. Thanks. I had got close amid all the varieties I 
> was trying out to achieve the same result. Perhaps my closest was: 
> \setuphead[chapter][pagebreak=chapterverso], but it couldn't quite cut 
> it!
>
> Julian
>
> On 6/5/20 1:57 pm, Wolfgang Schuster wrote:
>> jbf schrieb am 06.05.2020 um 01:31:
>>> Hi list,
>>>
>>> I have a document set up in a standard way 
>>> (\setuppagenumbering[alternative=doublesided]) to ensure that new 
>>> chapters always begin on a recto page, but in one particular 
>>> instance only, I want the new chapter to start on the next (verso) 
>>> page instead of creating a blank then starting on the recto side.
>>>
>>> I thought I might have been able to force that with \page[no] 
>>> immediately after the previous chapter concluded or before 
>>> \chapter{My new chapter}, but this command is ignored (and may well 
>>> be the wrong command to achieve what I want).
>>>
>>> Is there a way to interrupt the setup so the new chapter in this 
>>> case can start on the verso page?
>>
>> Create a new heading for chapters which can start on left/right pages.
>>
>> \setuppagenumbering[alternative=doublesided]
>>
>> \definehead[mychapter][chapter]
>>
>> \setuphead[mychapter][page=yes]
>>
>> \starttext
>>
>> \chapter{Right page}
>>
>> \chapter{Right page}
>>
>> \mychapter{New page}
>>
>> \chapter{Right page}
>>
>> \stoptext
>>
>> Wolfgang
>>
> ___________________________________________________________________________________ 
>
>
You may want the new /mychapter/ head to appear in the TOC and pdf 
bookmarks as well, so take a look at /\setupcombinedlist/ and 
/\placebookmarks/.

-- 
Rik


[-- Attachment #1.2: Type: text/html, Size: 2731 bytes --]

[-- Attachment #2: Type: text/plain, Size: 493 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: how to interrupt doublesided in particular instance
  2020-05-06 14:33     ` Rik Kabel
@ 2020-05-06 21:12       ` jbf
  0 siblings, 0 replies; 5+ messages in thread
From: jbf @ 2020-05-06 21:12 UTC (permalink / raw)
  To: Rik Kabel; +Cc: ntg-context


[-- Attachment #1.1: Type: text/plain, Size: 2402 bytes --]

Thanks for that reminder Rik! Very timely! I had just noticed the 
missing chapters in the TOC :-)

Julian

On 7/5/20 12:33 am, Rik Kabel wrote:
>
>
> On 5/6/2020 00:54, jbf wrote:
>> So simple, Wolfgang. Thanks. I had got close amid all the varieties I 
>> was trying out to achieve the same result. Perhaps my closest was: 
>> \setuphead[chapter][pagebreak=chapterverso], but it couldn't quite 
>> cut it!
>>
>> Julian
>>
>> On 6/5/20 1:57 pm, Wolfgang Schuster wrote:
>>> jbf schrieb am 06.05.2020 um 01:31:
>>>> Hi list,
>>>>
>>>> I have a document set up in a standard way 
>>>> (\setuppagenumbering[alternative=doublesided]) to ensure that new 
>>>> chapters always begin on a recto page, but in one particular 
>>>> instance only, I want the new chapter to start on the next (verso) 
>>>> page instead of creating a blank then starting on the recto side.
>>>>
>>>> I thought I might have been able to force that with \page[no] 
>>>> immediately after the previous chapter concluded or before 
>>>> \chapter{My new chapter}, but this command is ignored (and may well 
>>>> be the wrong command to achieve what I want).
>>>>
>>>> Is there a way to interrupt the setup so the new chapter in this 
>>>> case can start on the verso page?
>>>
>>> Create a new heading for chapters which can start on left/right pages.
>>>
>>> \setuppagenumbering[alternative=doublesided]
>>>
>>> \definehead[mychapter][chapter]
>>>
>>> \setuphead[mychapter][page=yes]
>>>
>>> \starttext
>>>
>>> \chapter{Right page}
>>>
>>> \chapter{Right page}
>>>
>>> \mychapter{New page}
>>>
>>> \chapter{Right page}
>>>
>>> \stoptext
>>>
>>> Wolfgang
>>>
>> ___________________________________________________________________________________ 
>>
>>
> You may want the new /mychapter/ head to appear in the TOC and pdf 
> bookmarks as well, so take a look at /\setupcombinedlist/ and 
> /\placebookmarks/.
>
> -- 
> Rik
>
>
> ___________________________________________________________________________________
> If your question is of interest to others as well, please add an entry to the Wiki!
>
> maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________

[-- Attachment #1.2: Type: text/html, Size: 4227 bytes --]

[-- Attachment #2: Type: text/plain, Size: 493 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-05-06 21:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-05 23:31 how to interrupt doublesided in particular instance jbf
2020-05-06  3:57 ` Wolfgang Schuster
2020-05-06  4:54   ` jbf
2020-05-06 14:33     ` Rik Kabel
2020-05-06 21:12       ` jbf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).