lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Visibility of left-hand connecting bar line


From: David Kastrup
Subject: Re: Visibility of left-hand connecting bar line
Date: Tue, 24 Jan 2017 09:56:21 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux)

Hendrik Fuß <address@hidden> 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

reply via email to

[Prev in Thread] Current Thread [Next in Thread]