]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/using-arpeggiobracket-to-make-divisi-more-visible.ly
Allow open strings in chords regardless of finger positions
[lilypond.git] / Documentation / snippets / using-arpeggiobracket-to-make-divisi-more-visible.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 = "expressive-marks, vocal-music"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13   texidoces = "
14 El corchete de arpegios @code{arpeggioBracket} se puede usar para
15 indicar la división de voces cuando no hay plicas que puedan ofrecer
16 esta información. Se suele encontrar en la música coral.
17
18 "
19
20   doctitlees = "Uso de arpeggioBracket para hacer más visible un divisi"
21
22
23 %% Translation of GIT committish: 27b1197f3bae8512c14d946752cd3e40e7c76016
24
25   texidocde = "
26 Das @code{arpeggioBracket}-Klammerobjekt kann benutzt werden, um geteilte
27 Stimmen anzuzeigen, wenn keine Hälse diese Information bieten.  Das sieht
28 man oft in Chormusik.
29
30 "
31   doctitlede = "Arpeggio-Klammern benutzen um geteilte Stimmen besser sichtbar zu machen"
32
33
34 %% Translation of GIT committish: c1d5bb448321d688185e0c6b798575d4c325ae80
35   texidocfr = "
36 Les crochets d'arpegio (@code{arpeggioBracket}) permettent de mettre en
37 évidence les divisions d'un pupitre en l'absence de hampe, comme on le
38 voit régulièrement dans les partitions pour chœur.
39
40 "
41   doctitlefr = "Utilisation d'un arpeggioBracket pour rendre les
42 divisions plus évidentes"
43
44
45   texidoc = "
46 The @code{arpeggioBracket} can be used to indicate the division of
47 voices where there are no stems to provide the information. This is
48 often seen in choral music.
49
50 "
51   doctitle = "Using arpeggioBracket to make divisi more visible"
52 } % begin verbatim
53
54 \include "english.ly"
55
56 \score {
57   \relative c'' {
58     \key a \major
59     \time 2/2
60     <<
61       \new Voice = "upper"
62       <<
63         { \voiceOne \arpeggioBracket
64           a2( b2
65           <b d>1\arpeggio)
66           <cs e>\arpeggio ~
67           <cs e>4
68         }
69         \addlyrics { \lyricmode { A -- men. } }
70       >>
71       \new Voice = "lower"
72       { \voiceTwo
73         a1 ~
74         a
75         a ~
76         a4 \bar "|."
77       }
78     >>
79   }
80   \layout { ragged-right = ##t }
81 }
82