]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/using-arpeggiobracket-to-make-divisi-more-visible.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[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   lsrtags = "expressive-marks, vocal-music"
8
9   texidoc = "
10 The @code{arpeggioBracket} can be used to indicate the division of
11 voices where there are no stems to provide the information. This is
12 often seen in choral music.
13
14 "
15   doctitle = "Using arpeggioBracket to make divisi more visible"
16 } % begin verbatim
17
18 \include "english.ly"
19
20 \score {
21   \relative c'' {
22     \key a \major
23     \time 2/2
24     <<
25       \new Voice = "upper"
26       <<
27         { \voiceOne \arpeggioBracket
28           a2( b2
29           <b d>1\arpeggio)
30           <cs e>\arpeggio ~
31           <cs e>4
32         }
33         \addlyrics { \lyricmode { A -- men. } }
34       >>
35       \new Voice = "lower"
36       { \voiceTwo
37         a1 ~
38         a
39         a ~
40         a4 \bar "|."
41       }
42     >>
43   }
44   \layout { ragged-right = ##t }
45 }
46