Hi Trevor,

2014-08-17 0:42 GMT+02:00 Trevor Bača <[email protected]>:


> I'm looking to remove the system start *bar* (rather than the start brace
> or bracket).
>

Oups, wrong snippet, did not check well enough.. I thought of another one.
How about something like :

\version "2.19.11"

addStartBar = \markup {
  \hspace #-.9
  \lower #.95
  \override #'(thickness . 2)
  \draw-line #'(0 . 3.9)
  \hspace #.2
  \musicglyph #"clefs.G"
}

\score {
  <<
    <<
      \new Staff
        \with {
          \override Clef.stencil = #(lambda (grob)
            (grob-interpret-markup grob addStartBar))
        }
        {
          c'4 d' e' f'
        }
    >>
    \new Staff {
      c'4 d' e' f'
    }
    \new Staff
      \with {
        \override Clef.stencil = #(lambda (grob)
          (grob-interpret-markup grob addStartBar))
      }
      {
        c'4 d' e' f'
      }
  >>
  \layout {
    \context {
      \Score
      \omit SystemStartBar
    }
  }
}


Pierre
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to