Re: pageBreak outside a score?

2023-05-04 Thread Eric Benson
Well then, sorry for bothering you all! I don't know how I confused myself so badly, but I'm just glad to be out of that hole! I think I tried to put the \pageBreak inside the \markup, which definitely does not work. On Thu, May 4, 2023 at 4:24 PM Kieren MacMillan wrote: > Hi Eric, > > > Oh! I

Re: pageBreak outside a score?

2023-05-04 Thread Kieren MacMillan
Hi Eric, > Oh! I think this is new behavior. I don’t think so…? I’ve been using this for many years. :) Cheers, Kieren. __ My work day may look different than your work day. Please do not feel obligated to read or respond to this email outside of

Re: pageBreak outside a score?

2023-05-04 Thread Eric Benson
Oh! I think this is new behavior. I have struggled with this in previous versions, but I guess it works now! Thank you! On Thu, May 4, 2023 at 3:44 PM Jean Abou Samra wrote: > Le jeudi 04 mai 2023 à 15:17 -0700, Eric Benson a écrit : > > \pageBreak doesn't work outside of a \score > > What

Re: pageBreak outside a score?

2023-05-04 Thread Jean Abou Samra
Le jeudi 04 mai 2023 à 15:17 -0700, Eric Benson a écrit : > \pageBreak doesn't work outside of a \score What makes you believe this? This works fine over here: ``` \version "2.24.1" \score { { c' d' e' } } \markup "Foobar" \pageBreak \score { { c' d' f' } } ``` signature.asc Description:

Re: pageBreak outside a score?

2023-05-04 Thread Eric Benson
Thanks, for the quick response! This doesn't seem to be exactly what I want, though. I'm really just trying to make one score with some performance notes at the end of one section, which also happens to be a natural place for a page break. I don't want or need a whole header on the next page. If

Re: pageBreak outside a score?

2023-05-04 Thread Hwaen Ch'uqi
Greetings, Eric, This occurs automatically when using \bookpart containers, as in: \book { \bookpart { TEXT MUSIC \pageBreak (if you need) MORE TEXT MORE MUSIC } \bookpart { ... } } Hwaen Ch'uqi On 5/4/23, Eric Benson wrote: > I find myself doing this more than once: > > Enter a score. > >

Re: pageBreak outside a score?

2023-05-04 Thread Jakob Pedersen
Hi Eric If you use \bookpart in stead, they automatically start on a new page. Something like: \bookpart { \score { %score goes here} \markup { %your notes } } \bookpart { \score { %score goes here} \markup { %your notes } } etc. Best wishes, Jakob On 05.05.2023 00.17, Eric Benson

pageBreak outside a score?

2023-05-04 Thread Eric Benson
I find myself doing this more than once: Enter a score. Enter some notes as markup text. Enter another score. Between the notes and the second score, I want a page break. I don't see how to do this. \pageBreak doesn't work outside of a \score, nor at the very beginning of a \score. How can I