]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/creating-arpeggios-across-notes-in-different-voices.ly
Split WWW target in two stages WWW-1 and WWW-2
[lilypond.git] / input / lsr / creating-arpeggios-across-notes-in-different-voices.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.46"
4
5 \header {
6   lsrtags = "expressive-marks"
7
8   texidoc = "
9 An arpeggio can be drawn across notes in different voices on the same
10 staff if the @code{Span_arpeggio_engraver} is moved to the @code{Staff}
11 context: 
12
13 "
14   doctitle = "Creating arpeggios across notes in different voices"
15 } % begin verbatim
16 \new Staff \with {
17   \consists "Span_arpeggio_engraver"
18 }
19 \relative c' {
20   \set Staff.connectArpeggios = ##t
21   <<
22     { <e' g>4\arpeggio <d f> <d f>2 } \\
23     { <d, f>2\arpeggio <g b>2 }
24   >>
25 }