]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/indicating-cross-staff-chords-with-arpeggio-bracket.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / Documentation / snippets / indicating-cross-staff-chords-with-arpeggio-bracket.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.16"
5
6 \header {
7   lsrtags = "keyboards"
8
9 %% Translation of GIT committish: 00ef2ac3dd16e21c9ffdffaa4d6d043a3f1a76e6
10   texidoces = "
11 Un corchete de arpegio puede indicar que se tienen que tocadr con la
12 misma mano notas que están en dos pentagramas distintos. Para hacerlo,
13 el @code{PianoStaff} se debe configurar para que acepte símbolos de
14 arpegio de pentagrama cruzado y los símbolos de arpegio se deben
15 configurar a la forma de corchete en el contexto de @code{PianoStaff}.
16
17 (Debussy, Les collines d’Anacapri, m. 65)
18
19 "
20   doctitlees = "Indicar acordes de pentagrama cruzado con corchetes de arpegio"
21
22
23 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
24   texidocde = "
25 Eine Arpeggioklammer kann anzeigen, dass Noten auf zwei unterschiedlichen
26 Systemen mit der selben Hand gespielt werden sollen.  Damit das notiert
27 werden kann, muss der @code{PianoStaff}-Kontext so eingestellt werden,
28 dass er Arpeggios über Systeme hinweg akzeptiert und die Form der Arpeggios
29 muss auf eine Klammer eingestellt werden.
30
31 (Debussy, Les collines d’Anacapri, T. 65)
32
33 "
34   doctitlede = "Akkorde auf zwei Systemen mit Arpeggioklammern anzeigen"
35
36   texidoc = "
37 An arpeggio bracket can indicate that notes on two different staves are
38 to be played with the same hand. In order to do this, the
39 @code{PianoStaff} must be set to accept cross-staff arpeggios and the
40 arpeggios must be set to the bracket shape in the @code{PianoStaff}
41 context.
42
43
44 (Debussy, Les collines d’Anacapri, m. 65)
45
46 "
47   doctitle = "Indicating cross-staff chords with arpeggio bracket"
48 } % begin verbatim
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