]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/using-arpeggiobracket-to-make-divisi-more-visible.ly
Doc-fr: vocal.itely
[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.12.2"
5
6 \header {
7 %% Translation of GIT committish: c1d5bb448321d688185e0c6b798575d4c325ae80
8   texidocfr = "
9 Les crochets d'arpegio (@code{arpeggioBracket}) permettent de mettre en
10 évidence les divisions d'un pupitre en l'absence de hampe, comme on le
11 voit régulièrement dans les partitions pour chœur.
12
13 "
14
15   doctitlefr = "Utilisation d'un arpeggioBracket pour rendre les
16 divisions plus évidentes"
17
18
19   lsrtags = "expressive-marks, vocal-music"
20
21
22 %% Translation of GIT committish: fa19277d20f8ab0397c560eb0e7b814bd804ecec
23   texidoces = "
24 El corchete de arpegios @code{arpeggioBracket} se puede usar para
25 indicar la división de voces cuando no hay plicas que puedan ofrecer
26 esta información. Se suele encontrar en la música coral.
27
28 "
29
30   doctitlees = "Uso de arpeggioBracket para hacer más visible un divisi"
31
32
33   texidoc = "
34 The @code{arpeggioBracket} can be used to indicate the division of
35 voices where there are no stems to provide the information. This is
36 often seen in choral music.
37
38 "
39   doctitle = "Using arpeggioBracket to make divisi more visible"
40 } % begin verbatim
41
42 \include "english.ly"
43
44 \score {
45   \relative c'' {
46     \key a \major
47     \time 2/2
48     <<
49       \new Voice = "upper"
50       <<
51         { \voiceOne \arpeggioBracket
52           a2( b2
53           <b d>1\arpeggio)
54           <cs e>\arpeggio ~
55           <cs e>4
56         }
57         \addlyrics { \lyricmode { A -- men. } }
58       >>
59       \new Voice = "lower"
60       { \voiceTwo
61         a1 ~
62         a
63         a ~
64         a4 \bar "|."
65       }
66     >>
67   }
68   \layout { ragged-right = ##t }
69 }
70