]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/indicating-cross-staff-chords-with-arpeggio-bracket.ly
Doc: run makelsr locally
[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.2"
8
9 \header {
10   lsrtags = "keyboards, real-music"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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
54 \new PianoStaff <<
55   \set PianoStaff.connectArpeggios = ##t
56   \override PianoStaff.Arpeggio #'stencil = #ly:arpeggio::brew-chord-bracket
57   \new Staff {
58     \relative c' {
59       \key b \major
60       \time 6/8
61       b8-.(\arpeggio fis'-.\> cis-. e-. gis-. b-.)\!\fermata^\laissezVibrer
62       \bar "||"
63     }
64   }
65   \new Staff {
66     \relative c' {
67       \clef bass
68       \key b \major
69       <<
70         {
71           <a e cis>2.\arpeggio
72         }
73         \\
74         {
75           <a, e a,>2.
76         }
77       >>
78     }
79   }
80 >>
81