]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/using-arpeggiobracket-to-make-divisi-more-visible.ly
Merge branch 'lilypond/translation'
[lilypond.git] / Documentation / snippets / using-arpeggiobracket-to-make-divisi-more-visible.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.31"
5
6 \header {
7 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
8   texidoces = "
9 El corchete de arpegios @code{arpeggioBracket} se puede usar para
10 indicar la división de voces cuando no hay plicas que puedan ofrecer
11 esta información. Se suele encontrar en la música coral.
12
13 "
14
15   doctitlees = "Uso de arpeggioBracket para hacer más visible un divisi"
16
17
18   lsrtags = "expressive-marks, vocal-music"
19
20   texidoc = "
21 The @code{arpeggioBracket} can be used to indicate the division of
22 voices where there are no stems to provide the information. This is
23 often seen in choral music.
24
25 "
26   doctitle = "Using arpeggioBracket to make divisi more visible"
27 } % begin verbatim
28
29 \include "english.ly"
30
31 \score {
32   \relative c'' {
33     \key a \major
34     \time 2/2
35     <<
36       \new Voice = "upper"
37       <<
38         { \voiceOne \arpeggioBracket
39           a2( b2
40           <b d>1\arpeggio)
41           <cs e>\arpeggio ~
42           <cs e>4
43         }
44         \addlyrics { \lyricmode { A -- men. } }
45       >>
46       \new Voice = "lower"
47       { \voiceTwo
48         a1 ~
49         a
50         a ~
51         a4 \bar "|."
52       }
53     >>
54   }
55   \layout { ragged-right = ##t }
56 }
57