]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/indicating-cross-staff-chords-with-arpeggio-bracket.ly
3bce8e1137afc77a68938c48ef1812f7c5f3a0b9
[lilypond.git] / input / lsr / indicating-cross-staff-chords-with-arpeggio-bracket.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.57"
4
5 \header {
6   lsrtags = "keyboards"
7
8   texidoc = "
9 An arpeggio bracket can indicate that notes on two different staves are
10 to be played with the same hand. In order to do this, the
11 @code{PianoStaff} must be set to accept cross-staff arpeggios and the
12 arpeggios must be set to the bracket shape in the @code{PianoStaff}
13 context.
14
15
16 (Debussy, Les collines d’Anacapri, m. 65) 
17
18 "
19   doctitle = "Indicating cross-staff chords with arpeggio bracket"
20 } % begin verbatim
21 \paper { ragged-right = ##t }
22
23 \new PianoStaff <<
24   \set PianoStaff.connectArpeggios = ##t
25   \override PianoStaff.Arpeggio #'stencil = #ly:arpeggio::brew-chord-bracket
26   \new Staff {
27     \relative c' {
28       \key b \major
29       \time 6/8
30       b8-.(\arpeggio fis'-.\> cis-. e-. gis-. b-.)\!\fermata^\laissezVibrer
31       \bar "||"
32     }
33   }
34   \new Staff {
35     \relative c' {
36       \clef bass
37       \key b \major
38       <<
39         {
40           <a e cis>2.\arpeggio
41         }
42         \\
43         {
44           <a, e a,>2.
45         }
46       >>
47     }
48   }
49 >>