key change at end of snippet

2020-01-24 Thread Werner LEMBERG
I have to typeset a snippet that is an excerpt of a longer piece, and this snippet ends with a key change: \relative c' { \key d \major d1 \key c \major } However, the staff stops right before the key change, see attached image. What can I do to avoid that? Werner

RE: key change at end of snippet

2020-01-24 Thread Mark Stephen Mrotek
ypond-user-bounces+carsonmark=ca.rr@gnu.org] On Behalf Of Werner LEMBERG Sent: Friday, January 24, 2020 9:30 PM To: lilypond-user@gnu.org Subject: key change at end of snippet I have to typeset a snippet that is an excerpt of a longer piece, and this snippet ends with a key change: \relative c&#

Re: key change at end of snippet

2020-01-24 Thread Werner LEMBERG
> \once \override Score.BreakAlignment #'break-align-orders = > #(make-vector 3 '( staff-bar > clef > span-bar > breathing-sign > ... > key > time-signature)), > > To in

Re: key change at end of snippet

2020-01-24 Thread Urs Liska
Am 25. Januar 2020 07:30:01 MEZ schrieb Werner LEMBERG : > >> \once \override Score.BreakAlignment #'break-align-orders = >> #(make-vector 3 '( staff-bar >> clef >> span-bar >> breathing-sign >> ... >>

Re: key change at end of snippet

2020-01-24 Thread Werner LEMBERG
>> I think it is necessary to somehow keep the staff line alive – I >> guess I can probably fake a solution by adding another bar with a >> suppressed bar line that contains some invisible music. Not sure >> yet whether this is sensible, and if yes, how to make the width of >> this extra bar (alm

Re: key change at end of snippet

2020-01-24 Thread Urs Liska
Am 25. Januar 2020 08:17:05 MEZ schrieb Werner LEMBERG : > >>> I think it is necessary to somehow keep the staff line alive – I >>> guess I can probably fake a solution by adding another bar with a >>> suppressed bar line that contains some invisible music. Not sure >>> yet whether this is sens

Re: key change at end of snippet

2020-01-25 Thread Thomas Morley
Am Sa., 25. Jan. 2020 um 06:31 Uhr schrieb Werner LEMBERG : > > > I have to typeset a snippet that is an excerpt of a longer piece, and > this snippet ends with a key change: > > \relative c' { > \key d \major > d1 > \key c \major > } > > However, the staff stops right before the ke

Re: key change at end of snippet

2020-01-25 Thread David Kastrup
Werner LEMBERG writes: > I have to typeset a snippet that is an excerpt of a longer piece, and > this snippet ends with a key change: > > \relative c' { > \key d \major > d1 > \key c \major > } > > However, the staff stops right before the key change, see attached > image. What c

Re: key change at end of snippet

2020-01-25 Thread Werner LEMBERG
>> I have to typeset a snippet that is an excerpt of a longer piece, >> and this snippet ends with a key change: >> >> \relative c' { >> \key d \major >> d1 >> \key c \major >> } >> >> However, the staff stops right before the key change, see attached >> image. What can I do to avo

Re: key change at end of snippet

2020-01-25 Thread Werner LEMBERG
From: David Kastrup Subject: Re: key change at end of snippet Date: Sat, 25 Jan 2020 09:41:45 +0100 > \relative c' { > \key d \major > d1 > \key c \major > \grace s256 > } Thanks for the suggestion! I'm now trying Thomas's route. Werner