Consider this snippet.
```tex
cancellationFirst =
\override Score.BreakAlignment.break-align-orders =
#(grob-transformer 'break-align-orders
(lambda (grob orig)
(let ((vec (vector-copy orig))
(middle '(key-cancellation
Hello,
is it possible to add after a bar and before a break some horizontal space only
for a particular system ?
Thank you,
cordelia
visual example:
> is it possible to add after a bar and before a break some horizontal
> space only for a particular system ?
Try the `ragged-last` paper variable.
Example:
```
\score {
{ \repeat unfold 60 c'4 }
\layout {
ragged-last = ##t
}
}
\score {
{ \repeat unfold 60 d'4 }
\layout {
rag
Thank you, yes this works if the measure is the last one.
For exemple in your exemple, I’d need the second staff to have a right indent.
> On 22 Dec 2023, at 15:29, Werner LEMBERG wrote:
>
>
>> is it possible to add after a bar and before a break some horizontal
>> space only for a particular s
Does this do what you want or do you want the staff to go on after the bar line?Indenting individual systemsdi.unimi.it22 dec. 2023 kl. 15:47 skrev Cordelia :Thank you, yes this works if the measure is the last one.For exemple in your exemple, I’d need the second staff to have a right indent.On 22
> Thank you, yes this works if the measure is the last one. For
> exemple in your exemple, I’d need the second staff to have a right
> indent.
Simply split your music into two scores. You can adjust the distance
between the last line of a score and the first line of the next score
with the pape
I did see that, but I found it very complicated as exemple..
Yes, it’s what I wanted.
> On 22 Dec 2023, at 16:30, Leo Correia de Verdier
> wrote:
>
> Does this do what you want or do you want the staff to go on after the bar
> line?
>
> Indenting individual systems
> di.unimi.it
>
>
Hi Werner,
does the new proposed spacing mean that the time signatures are not
aligned across staves any more but were before?
Best,
Michael
> does the new proposed spacing mean that the time signatures are not
> aligned across staves any more but were before?
No, they are aligned as before.
Werner