I am writing notes for a choir. That's why I use the ChoirStaff.
Everything looks nice. But the original like many other printed notes
have a closing bar line connected after the final measure. I tried to
this with BarLine.allow-span-bar. This doesn't give neither a warning
nor a error message. But the final bar line is not visible.
In the notation reference, section 5.1.1 explains the staff containers.
The ChoirStaff is described as:
Identical to StaffGroup except that the bar lines of the contained
staves are not connected vertically.
That's the desired for the whole song. Except at the end. How can I get
this closing connected bar line?
Here is my MWE.
\version "2.24.4"
\new ChoirStaff <<
\new Staff \with { \override BarLine.allow-span-bar = ##t }
{ \relative c'' { c4 d e f c, d e f \bar "|." } }
\new Staff \with { \override BarLine.allow-span-bar = ##t }
{ \relative c' { g4 a b c c, d e f \bar "|." } }
>>
\layout {
\context {
\Staff
\override BarLine.allow-span-bar = ##t
}
}
Regards
Helge