]> git.donarmstrong.com Git - lilypond.git/blob - input/test/separate-staccato.ly
* scripts/lilypond-book.py (do_file): do not overwrite input file.
[lilypond.git] / input / test / separate-staccato.ly
1
2 \version "2.1.26"
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 Voice <<
16      \music
17      \repeat unfold 2 \staccatos
18    >>
19         \paper{raggedright=##t}
20 }
21