2014-07-06 15:35 GMT+02:00 Knute Snortum <ksnor...@gmail.com>:
> I have a chord that's arpeggiated but the top note is in another voice.  I
> want the arpeggio indicator to go from the chord in one voice to the note in
> another.  So far what I have is this, but the note stem goes up to the
> moving voice.  Is there a way to lengthen the arpeggio  indicator or remove
> the note stem?  Or some other solution?
>
> %%%%%%%%%%%%%%%%%%%%%
> \version "2.18.2"
> \language "english"
>
> \relative c'' {
>   << { b'8 ( [ a ] ) fs8-. d-. } \\ { <d fs b>8 \arpeggio s s4 } >>
> }
> %%%%%%%%%%%%%%%%
>
> Knute Snortum
> (via Gmail)

Hi,
how about:

\version "2.18.2"
\language "english"

\layout {
  \context {
    \Staff
    \consists "Span_arpeggio_engraver"
  }
}

\relative c'' {
  \once \set Staff.connectArpeggios = ##t
  << { b'8\arpeggio ( [ a ] ) fs8-. d-. } \\ { <d fs>8 \arpeggio s s4 } >>
}

HTH,
  Harm

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

Reply via email to