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