]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/indicating-cross-staff-chords-with-arpeggio-bracket.ly
ed2c356c2b3459b37410149e818861a5a4d5c667
[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.13.1"
4
5 \header {
6   lsrtags = "keyboards"
7
8 %% Translation of GIT committish: e968d89055d045a29276db76970570f30ccc917e
9   texidoces = "
10 Un corchete de arpegio puede indicar que se tienen que tocadr con la
11 misma mano notas que están en dos pentagramas distintos. Para hacerlo,
12 el @code{PianoStaff} se debe configurar para que acepte símbolos de
13 arpegio de pentagrama cruzado y los símbolos de arpegio se deben
14 configurar a la forma de corchete en el contexto de @code{PianoStaff}.
15
16 (Debussy, Les collines d’Anacapri, m. 65)
17
18 "
19   doctitlees = "Indicar acordes de pentagrama cruzado con corchetes de arpegio"
20
21 %% Translation of GIT committish: 33f623301a41fcc53efadf96bca1c72834763415
22   texidocde = "
23 Eine Arpeggioklammer kann anzeigen, dass Noten auf zwei unterschiedlichen
24 Systemen mit der selben Hand gespielt werden sollen.  Damit das notiert
25 werden kann, muss der @code{PianoStaff}-Kontext so eingestellt werden,
26 dass er Arpeggios über Systeme hinweg akzeptiert und die Form der Arpeggios
27 muss auf eine Klammer eingestellt werden.
28
29 (Debussy, Les collines d’Anacapri, T. 65)
30
31 "
32   doctitlede = "Akkorde auf zwei Systemen mit Arpeggioklammern anzeigen"
33
34   texidoc = "
35 An arpeggio bracket can indicate that notes on two different staves are
36 to be played with the same hand. In order to do this, the
37 @code{PianoStaff} must be set to accept cross-staff arpeggios and the
38 arpeggios must be set to the bracket shape in the @code{PianoStaff}
39 context.
40
41
42 (Debussy, Les collines d’Anacapri, m. 65) 
43
44 "
45   doctitle = "Indicating cross-staff chords with arpeggio bracket"
46 } % begin verbatim
47
48 \paper { ragged-right = ##t }
49
50 \new PianoStaff <<
51   \set PianoStaff.connectArpeggios = ##t
52   \override PianoStaff.Arpeggio #'stencil = #ly:arpeggio::brew-chord-bracket
53   \new Staff {
54     \relative c' {
55       \key b \major
56       \time 6/8
57       b8-.(\arpeggio fis'-.\> cis-. e-. gis-. b-.)\!\fermata^\laissezVibrer
58       \bar "||"
59     }
60   }
61   \new Staff {
62     \relative c' {
63       \clef bass
64       \key b \major
65       <<
66         {
67           <a e cis>2.\arpeggio
68         }
69         \\
70         {
71           <a, e a,>2.
72         }
73       >>
74     }
75   }
76 >>
77