]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/indicating-cross-staff-chords-with-arpeggio-bracket.ly
Make the length of beamlets configurable.
[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.64"
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
34 \paper { ragged-right = ##t }
35
36 \new PianoStaff <<
37   \set PianoStaff.connectArpeggios = ##t
38   \override PianoStaff.Arpeggio #'stencil = #ly:arpeggio::brew-chord-bracket
39   \new Staff {
40     \relative c' {
41       \key b \major
42       \time 6/8
43       b8-.(\arpeggio fis'-.\> cis-. e-. gis-. b-.)\!\fermata^\laissezVibrer
44       \bar "||"
45     }
46   }
47   \new Staff {
48     \relative c' {
49       \clef bass
50       \key b \major
51       <<
52         {
53           <a e cis>2.\arpeggio
54         }
55         \\
56         {
57           <a, e a,>2.
58         }
59       >>
60     }
61   }
62 >>