]> git.donarmstrong.com Git - lilypond.git/blob - input/bugs/mb.ly
946ff2343756f865fe90a82093912096ecae221f
[lilypond.git] / input / bugs / mb.ly
1 % mb.ly: midi-bug
2 % midi notes get stuck
3
4 %{
5 From: Mats Bengtsson <mats.bengtsson@s3.kth.se>
6 Subject: Re: request simple .ly showing MIDI tie bug 
7 To: Jan Nieuwenhuizen <janneke@gnu.org>
8 Date: Mon, 26 Feb 2001 23:18:06 +0100
9
10 I was lucky enough to find a short snippet which triggered
11 the bug (a few bars from David Lattermanns typesetting of
12 the Dvorak Bagatelles. I spent the Sunday upgrading them
13 to 1.3.131). I hope it simplifies the bug search.
14 %}
15
16 \score{
17   \notes \relative c{
18     \time 2/4;
19     \clef bass;
20     \property Staff.midiInstrument = "harmonica"
21     <
22       \context Voice=ua {
23         \stemDown
24         e4 a, | b2 |
25       }
26       \context Voice=ub {
27         \stemUp
28         e2 ~ | e4 dis |
29       }
30     >
31     R2*5 |
32     c'2
33   }
34 \paper{}
35 \midi{\tempo 4 = 140;}
36 }
37