]> git.donarmstrong.com Git - lilypond.git/blob - input/no-notation/midi-grace.ly
Merge branch 'jneeman' of git+ssh://jneem@git.sv.gnu.org/srv/git/lilypond into jneeman
[lilypond.git] / input / no-notation / midi-grace.ly
1 #(ly:set-option 'old-relative)
2 \version "2.10.0"
3 \header{ texidoc = "Tests MIDI output with grace notes. " }
4
5 \score { 
6   \context Voice \relative c {
7     \new Voice = VoiceOne
8         \grace {
9   \override Stem  #'stroke-style = #"grace"
10    c8 
11   \revert Stem #'stroke-style }
12  d4 d d d d
13         \grace {
14   \override Stem  #'stroke-style = #"grace"
15    e16 f e f 
16   \revert Stem #'stroke-style }
17  d4 d d d d 
18         
19   }
20   \layout { }  
21   \midi { }
22 }
23