]> git.donarmstrong.com Git - lilypond.git/blob - input/test/separate-staccato.ly
Massive changes - see ChangeLog.
[lilypond.git] / input / test / separate-staccato.ly
1 #(ly:set-option 'old-relative)
2 \version "1.9.0"
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.  Here is an example to add repeated staccato dots."
8
9
10 staccatos = \notes { s4-. s-. s-. s s }
11
12 music = \notes\relative c' { c4 d e f g  a b c d e }
13
14 \score {
15    \context Thread=one <
16      \music
17      \repeat unfold 2 \staccatos
18    >
19         \paper{raggedright=##t}
20 }
21