]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/arpeggio.ly
*** empty log message ***
[lilypond.git] / input / regression / arpeggio.ly
1
2 \version "2.1.28"
3 \header{
4 texidoc="
5 Arpeggios are supported, both cross-staff and broken single staff.
6 "
7 }
8
9
10
11 \score{
12     \context PianoStaff\notes << 
13          \new Staff \relative c''{
14              <fis,  d a>\arpeggio
15             \override Staff.Arpeggio  #'arpeggio-direction = #1 
16              <fis d a >\arpeggio            
17              %%\override PianoStaff.SpanArpeggio  #'connect = ##t
18              \set PianoStaff.connectArpeggios = ##t
19              <fis d a>\arpeggio
20           }
21          \new Staff\relative c{
22              \clef bass
23              <g b d>\arpeggio
24             \override Staff.Arpeggio  #'arpeggio-direction = #-1
25              <g b d>\arpeggio
26              <g b d>\arpeggio
27          }
28     >>
29     \paper { raggedright= ##t }
30 }