]> git.donarmstrong.com Git - lilypond.git/blob - input/test/separate-staccato.ly
5aa6f4c814d9119ba69e8b46efeac00087e2c810
[lilypond.git] / input / test / separate-staccato.ly
1
2 \version "2.1.30"
3 % possible rename.  -gp
4
5 \header { texidoc="@cindex Seperate Staccato
6 You can enter notes and articulations separately, and merge
7 them into one thread.  In this example, a repead series of staccato dots 
8 is attached to the notes."
9
10
11 staccatos = \notes { s4-. s-. s-. s s }
12
13 music = \notes\relative c' { c4 d e f g  a b c d e }
14
15 \score {
16    \context Voice <<
17      \music
18      \repeat unfold 2 \staccatos
19    >>
20         \paper{raggedright=##t}
21 }
22