]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/indicating-cross-staff-chords-with-arpeggio-bracket.ly
Merge master into nested-bookparts
[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.62"
4
5 \header {
6   lsrtags = "keyboards"
7
8   texidoces = "
9 Un corchete de arpegio puede indicar que se tienen que tocadr con la
10 misma mano notas que están en dos pentagramas distintos. Para hacerlo,
11 el @code{PianoStaff} se debe configurar para que acepte símbolos de
12 arpegio de pentagrama cruzado y los símbolos de arpegio se deben
13 configurar a la forma de corchete en el contexto de @code{PianoStaff}.
14
15 (Debussy, Les collines d’Anacapri, m. 65)
16
17 "
18   doctitlees = "Indicar acordes de pentagrama cruzado con corchetes de arpegio"
19
20   texidoc = "
21 An arpeggio bracket can indicate that notes on two different staves are
22 to be played with the same hand. In order to do this, the
23 @code{PianoStaff} must be set to accept cross-staff arpeggios and the
24 arpeggios must be set to the bracket shape in the @code{PianoStaff}
25 context.
26
27
28 (Debussy, Les collines d’Anacapri, m. 65) 
29
30 "
31   doctitle = "Indicating cross-staff chords with arpeggio bracket"
32 } % begin verbatim
33 \paper { ragged-right = ##t }
34
35 \new PianoStaff <<
36   \set PianoStaff.connectArpeggios = ##t
37   \override PianoStaff.Arpeggio #'stencil = #ly:arpeggio::brew-chord-bracket
38   \new Staff {
39     \relative c' {
40       \key b \major
41       \time 6/8
42       b8-.(\arpeggio fis'-.\> cis-. e-. gis-. b-.)\!\fermata^\laissezVibrer
43       \bar "||"
44     }
45   }
46   \new Staff {
47     \relative c' {
48       \clef bass
49       \key b \major
50       <<
51         {
52           <a e cis>2.\arpeggio
53         }
54         \\
55         {
56           <a, e a,>2.
57         }
58       >>
59     }
60   }
61 >>