]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/midi-tuplets.ly
11153ded7d8c233eb1bdf4ad8675e693a9406830
[lilypond.git] / input / regression / midi-tuplets.ly
1 \version "2.16.0"
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 c' {
21
22     a1 a2 a2. a4 a4. a8 a8. a16 a16. a32 a32. a64
23
24     \times 2/3 { b4 b4 b4 }
25     \times 3/5 { b4 b4 b4 b4 b4 }
26
27     \times 2/3 { c8 c8 c8 }
28     \times 3/5 { c8 c8 c8 c8 c8 }
29
30   }
31   \layout { }  
32   \midi { }
33 }
34
35