Hi Nick & Xavier,

thanks very much and sorry for re-asking the question (when I described the problem I had no internet connection and I forgot to check the archives before actually sending the mail).

Cheers
patrick
Am 23.08.2010 um 11:41 schrieb Nick Payne:

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


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to