lilypond-user
[Top][All Lists]
Advanced

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

Re: Transparent bar line leaves lines between staves


From: Kieren MacMillan
Subject: Re: Transparent bar line leaves lines between staves
Date: Fri, 15 May 2015 14:29:36 -0400

Hi Knute,

> In this snippet, there are "pieces" of the bar line left between the staves.  
> Is this a bug?

No. You’ve only hidden the BarLine (which lives within the Staff), not the 
SpanBar (which lives between connected Staff contexts of a PianoStaff).

Instead, use:

notes = { c8 d e d e f | e f g f g a | }
rh = \relative c'' \notes
lh = \relative c \notes

global = {
  \key c \major
  \time 6/8
}

\score {
  \new PianoStaff <<
    \new Staff {
      \global
      \clef treble
      \rh
    }
    \new Staff { 
      \global 
      \clef bass 
      \lh
    }
  >>
  \layout { 
    \context {
      \Score
      \hide BarLine
      \hide SpanBar
    }
  } 
}

Note also that I use the shortcut \hide, for convenience.  =)

Hope this helps!
Kieren.
________________________________

Kieren MacMillan, composer
‣ website: www.kierenmacmillan.info
‣ email: address@hidden




reply via email to

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