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