]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/indicating-cross-staff-chords-with-arpeggio-bracket.ly
Doc: Update LSR.
[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: d2119a9e5e951c6ae850322f41444ac98d1ed492
10   texidoces = "
11 Un corchete de arpegio puede indicar que se tienen que tocar 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 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
23   texidocde = "
24 Eine Arpeggioklammer kann anzeigen, dass Noten auf zwei unterschiedlichen
25 Systemen mit der selben Hand gespielt werden sollen.  Damit das notiert
26 werden kann, muss der @code{PianoStaff}-Kontext so eingestellt werden,
27 dass er Arpeggios über Systeme hinweg akzeptiert und die Form der Arpeggios
28 muss auf eine Klammer eingestellt werden.
29
30 (Debussy, Les collines d’Anacapri, T. 65)
31
32 "
33   doctitlede = "Akkorde auf zwei Systemen mit Arpeggioklammern anzeigen"
34
35   texidoc = "
36 An arpeggio bracket can indicate that notes on two different staves are
37 to be played with the same hand. In order to do this, the
38 @code{PianoStaff} must be set to accept cross-staff arpeggios and the
39 arpeggios must be set to the bracket shape in the @code{PianoStaff}
40 context.
41
42
43 (Debussy, Les collines d’Anacapri, m. 65)
44
45 "
46   doctitle = "Indicating cross-staff chords with arpeggio bracket"
47 } % begin verbatim
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 >>
76