Hendrik Fuß <hend...@kontrafuss.de> writes:

> Another issue:
>
> I am trying to typeset a sheet that introduces note durations like so:
>
> \score {
> <<
> \new RhythmicStaff \with { instrumentName = "Whole notes" }{
> d1
> }
> \new RhythmicStaff \with { instrumentName = "Half notes" }{
> d2 d
> }
> \new RhythmicStaff \with { instrumentName = "Quarter notes" }{
> d4 d d d
> }
> \addlyrics { "1" "2" "3" "4" }
>>>
> }
>
> Which works fine, but I would like to get rid of the leftmost bar line that
> connects the three systems.
>
> Couldn't figure out how.

\score {
  \new Score \with { \override SystemStartBar.collapse-height = 10000 }
  <<
    \new RhythmicStaff \with { instrumentName = "Whole notes" }{
      d1
    }
    \new RhythmicStaff \with { instrumentName = "Half notes" }{
      d2 d
    }
    \new RhythmicStaff \with { instrumentName = "Quarter notes" }{
      d4 d d d
    }
    \addlyrics { "1" "2" "3" "4" }
  >>
}

-- 
David Kastrup
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to