]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/indicating-cross-staff-chords-with-arpeggio-bracket.ly
Merge commit 'origin/dev/jneeman' into systems-per-page
[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.0"
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 %% Translation of GIT committish: 33f623301a41fcc53efadf96bca1c72834763415
21   texidocde = "
22 Eine Arpeggioklammer kann anzeigen, dass Noten auf zwei unterschiedlichen
23 Systemen mit der selben Hand gespielt werden sollen.  Damit das notiert
24 werden kann, muss der @code{PianoStaff}-Kontext so eingestellt werden,
25 dass er Arpeggios über Systeme hinweg akzeptiert und die Form der Arpeggios
26 muss auf eine Klammer eingestellt werden.
27
28 (Debussy, Les collines d’Anacapri, T. 65)
29
30 "
31   doctitlede = "Akkorde auf zwei Systemen mit Arpeggioklammern anzeigen"
32
33   texidoc = "
34 An arpeggio bracket can indicate that notes on two different staves are
35 to be played with the same hand. In order to do this, the
36 @code{PianoStaff} must be set to accept cross-staff arpeggios and the
37 arpeggios must be set to the bracket shape in the @code{PianoStaff}
38 context.
39
40
41 (Debussy, Les collines d’Anacapri, m. 65) 
42
43 "
44   doctitle = "Indicating cross-staff chords with arpeggio bracket"
45 } % begin verbatim
46
47 \paper { ragged-right = ##t }
48
49 \new PianoStaff <<
50   \set PianoStaff.connectArpeggios = ##t
51   \override PianoStaff.Arpeggio #'stencil = #ly:arpeggio::brew-chord-bracket
52   \new Staff {
53     \relative c' {
54       \key b \major
55       \time 6/8
56       b8-.(\arpeggio fis'-.\> cis-. e-. gis-. b-.)\!\fermata^\laissezVibrer
57       \bar "||"
58     }
59   }
60   \new Staff {
61     \relative c' {
62       \clef bass
63       \key b \major
64       <<
65         {
66           <a e cis>2.\arpeggio
67         }
68         \\
69         {
70           <a, e a,>2.
71         }
72       >>
73     }
74   }
75 >>