Rune Zedeler skrev:
But what you /can/ do is to use a StaffGroup and then make the span bars
transparent apart from at the end of the measure
You could also automatically make single bars ("|") invisible but still
show all other kind of bars - like this:
\version "2.10.25"
mus = { \clef F c d e f c d e f c d e f c d e f \bar "||" c d e f c d e
f c d e f \bar "|." }
\new StaffGroup {
\override StaffGroup.SpanBar #'stencil =
#(lambda (a)
(if (string=? (ly:grob-property a 'glyph-name) "|")
(set! (ly:grob-property a 'glyph-name) "")) (ly:span-bar::print a))
<<
\new Staff \mus
\new Staff \mus
>>
\bar "|."
}
-Rune
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user