]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/using-arpeggiobracket-to-make-divisi-more-visible.ly
Web-ja: update introduction
[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.di.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.18.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 \include "english.ly"
22
23 \score {
24   \relative c'' {
25     \key a \major
26     \time 2/2
27     <<
28       \new Voice = "upper"
29       <<
30         { \voiceOne \arpeggioBracket
31           a2( b2
32           <b d>1\arpeggio)
33           <cs e>\arpeggio ~
34           <cs e>4
35         }
36         \addlyrics { \lyricmode { A -- men. } }
37       >>
38       \new Voice = "lower"
39       { \voiceTwo
40         a1 ~
41         a
42         a ~
43         a4 \bar "|."
44       }
45     >>
46   }
47   \layout { ragged-right = ##t }
48 }