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