> 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 {
ragged-last = ##t
}
}
```
Werner
