]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/music-function-post-event.ly
Imported Upstream version 2.14.2
[lilypond.git] / input / regression / music-function-post-event.ly
1 \version "2.14.0"
2
3 \header
4 {
5
6   texidoc = "Music functions may be attached to notes;
7 in this case they must be introduced by a direction
8 indicator.  If a non-neutral direction is given (i.e.
9 anything else than a dash), then the 'direction property
10 of the resulting object is set accordingly."
11
12 }
13
14 dynScript =
15 #(define-music-function (parser location text) (string?)
16    (make-dynamic-script text))
17
18 \relative c' {
19   c1-\dynScript "pp"
20   c^\dynScript "fp"
21   c_\dynScript "spz"
22 }