]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/using-arpeggiobracket-to-make-divisi-more-visible.ly
Change stringTunings from list of semitones to list of pitches
[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.39"
5
6 \header {
7   lsrtags = "expressive-marks, vocal-music"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
10   texidoces = "
11 El corchete de arpegios @code{arpeggioBracket} se puede usar para
12 indicar la división de voces cuando no hay plicas que puedan ofrecer
13 esta información. Se suele encontrar en la música coral.
14
15 "
16
17   doctitlees = "Uso de arpeggioBracket para hacer más visible un divisi"
18
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