]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/using-arpeggiobracket-to-make-divisi-more-visible.ly
Doc: run makelsr locally
[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.2"
8
9 \header {
10   lsrtags = "vocal-music, expressive-marks"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
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
55 \include "english.ly"
56
57 \score {
58   \relative c'' {
59     \key a \major
60     \time 2/2
61     <<
62       \new Voice = "upper"
63       <<
64         { \voiceOne \arpeggioBracket
65           a2( b2
66           <b d>1\arpeggio)
67           <cs e>\arpeggio ~
68           <cs e>4
69         }
70         \addlyrics { \lyricmode { A -- men. } }
71       >>
72       \new Voice = "lower"
73       { \voiceTwo
74         a1 ~
75         a
76         a ~
77         a4 \bar "|."
78       }
79     >>
80   }
81   \layout { ragged-right = ##t }
82 }
83