]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/arpeggio.ly
Fix 2241: Proper copyright/header/tagline handling with multiple bookparts
[lilypond.git] / input / regression / arpeggio.ly
1
2 \version "2.14.0"
3 \header{
4   texidoc="
5 Arpeggios are supported, both cross-staff and broken single staff.
6 "
7 }
8
9 \layout { ragged-right= ##t }
10
11
12 \context PianoStaff << 
13   \new Staff \relative c''{
14     <fis,  d a>\arpeggio
15     \arpeggioArrowUp
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     \arpeggioArrowDown
25     <g b d>\arpeggio
26     <g b d>\arpeggio
27   }
28 >>