]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/midi-tuplets.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / midi-tuplets.ly
1 \version "2.19.21"
2 \header {
3 texidoc = "
4
5 Midi2ly tuplet test.
6
7 @example
8   python scripts/midi2ly.py --duration-quant=32 \
9       --allow-tuplet=4*2/3 \
10       --allow-tuplet=8*2/3 \
11       --allow-tuplet=4*3/5 \
12       --allow-tuplet=8*3/5 \
13       tu.midi 
14 @end example
15 "
16 }
17
18
19 \score { 
20   \context Voice  \relative {
21
22     a1 a2 a2. a4 a4. a8 a8. a16 a16. a32 a32. a64
23
24     \tuplet 3/2 { b4 b4 b4 }
25     \tuplet 5/3 { b4 b4 b4 b4 b4 }
26
27     \tuplet 3/2 { c8 c8 c8 }
28     \tuplet 5/3 { c8 c8 c8 c8 c8 }
29
30   }
31   \layout { }  
32   \midi { }
33 }
34
35