]> git.donarmstrong.com Git - lilypond.git/commitdiff
midi pedal coverage
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 7 Jan 2007 01:35:15 +0000 (02:35 +0100)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 7 Jan 2007 01:35:15 +0000 (02:35 +0100)
input/regression/midi-pedal.ly [new file with mode: 0644]

diff --git a/input/regression/midi-pedal.ly b/input/regression/midi-pedal.ly
new file mode 100644 (file)
index 0000000..2a1fd31
--- /dev/null
@@ -0,0 +1,24 @@
+\header {
+
+  texidoc = "Sustain pedal elarMidi also handles crescendo and decrescendo, either
+  starting and ending from specified or unspecified sound level.
+
+  Run @code{timidity  -idvvv file.midi |grep Midi} to see midi events."
+
+}
+
+\version  "2.11.10"
+
+\score {
+  \relative {
+    {
+      { c16 e g c }
+      
+      { c,16\sustainDown e g c\sustainUp }
+      { c,16\unaCorda e g c\treCorde }
+      { c,16\sostenutoDown e g c\sostenutoUp }
+    }
+  }
+  \midi {}
+  \layout{}
+}