]> git.donarmstrong.com Git - lilypond.git/blob - input/test/separate-staccato.ly
* scripts/convert-ly.py (conv): remove \notes.
[lilypond.git] / input / test / separate-staccato.ly
1
2 \version "2.3.4"
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 =  { s4-. s-. s-. s s }
12
13 music = \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