]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/midi-notes.ly
Doc-es: various updates.
[lilypond.git] / input / regression / midi-notes.ly
1 \header {
2
3   texidoc = "A MIDI note-off event precedes a simultaneous note-on event
4 for the same pitch in the same MIDI channel, so that all notes are heard.
5 Run @code{timidity -idvvv file.midi |grep Midi} to see midi events."
6
7 }
8
9 \version "2.16.0"
10
11 \score {
12   <<
13     \new Staff <<
14       {r4 g' r2 | r2 a'4 r } \\
15       {g'4 r r2 | r2 r4 a' }
16     >>
17     \new Staff { r2 g'2 | a'2 r2 }
18   >>
19   \midi {}
20   \layout {}
21 }