lilypond-user
[Top][All Lists]
Advanced

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

Re: connect arpeggio down


From: Nick Payne
Subject: Re: connect arpeggio down
Date: Mon, 02 Mar 2015 16:31:56 +1100
User-agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0

On 02/03/2015 16:16, Helge Kruse wrote:
I have a problem with  connecting arpeggio. The arrow of
\arpeggioArrowDown or -Up vanishes when I connect the arpeggios of two
staves. You can reproduce it with the example below. Comment out the
connectArpeggios line and you see arrows.

Is this a known bug?

Regards Helge


\version "2.18.0"

upperHarpII = \relative c'' {
   \arpeggioArrowDown  <b c>2\arpeggio r
}
lowerHarpII = \relative c' {
   \clef bass
   \arpeggioArrowDown  <a e a,>2\arpeggio r
}

\score {
   \new PianoStaff \with {
     connectArpeggios = ##t
   } <<
     \new Staff \upperHarpII
     \new Staff \lowerHarpII
   >>
}


This works (on 2.19.16):

\version "2.18.0"

upperHarpII = \relative c'' {
  <b c>2\arpeggio r
}
lowerHarpII = \relative c' {
  \clef bass
  <a e a,>2\arpeggio r
}

\score {
  \new PianoStaff \with {
    connectArpeggios = ##t
    \override Arpeggio #'arpeggio-direction = #DOWN
  } <<
    \new Staff \upperHarpII
    \new Staff \lowerHarpII
  >>
}




reply via email to

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