lilypond-user
[Top][All Lists]
Advanced

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

Re: \arpeggioArrow* across voices


From: Nick Payne
Subject: Re: \arpeggioArrow* across voices
Date: Mon, 23 Aug 2010 19:41:57 +1000
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.11) Gecko/20100713 Thunderbird/3.0.6

On 23/08/10 18:04, Patrick Schmidt wrote:
Hi all,

it doesn't seem to be possible to draw arrow-type arpeggios across several voices. In the following example the arpeggio is drawn but the arrow is missing.

\version "2.13.30"
musicVoiceOne =  {
  \arpeggioArrowUp
<b e' gis' b' e''>4\arpeggio
}
musicVoiceTwo =  {
  %\arpeggioArrowUp
  e4\arpeggio
}
chordTest =  {
  \arpeggioArrowUp
<e b e' gis' b' e''>4\arpeggio
}
\score {
  \new Staff \with {
    \consists "Span_arpeggio_engraver"
  }{
<<
      \set Staff.connectArpeggios = ##t
      \new Voice {
        \voiceOne
        \musicVoiceOne
      }
      \new Voice {
        \voiceTwo
        \musicVoiceTwo
      }
>>
  }
}
{ \chordTest }

Did I miss something or is this a (known?) bug? Is there a workaround?
I asked this question a while ago and the response that explained the problem and its solution is here: http://lists.gnu.org/archive/html/lilypond-user/2010-07/msg00419.html.

\version "2.13.30"
musicVoiceOne =  {
  \override Staff.Arpeggio  #'arpeggio-direction = #UP
<b e' gis' b' e''>4\arpeggio
}
musicVoiceTwo =  {
  %\arpeggioArrowUp
  e4\arpeggio
}
chordTest =  {
  \override Staff.Arpeggio  #'arpeggio-direction = #DOWN
<e b e' gis' b' e''>4\arpeggio
}
\score {
  \new Staff \with {
    \consists "Span_arpeggio_engraver"
  }{
<<
      \set Staff.connectArpeggios = ##t
      \new Voice {
        \voiceOne
        \musicVoiceOne
      }
      \new Voice {
        \voiceTwo
        \musicVoiceTwo
      }
>>
  }
}
{ \chordTest }

Nick




reply via email to

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