]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tuplet-nest.ly
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / input / regression / tuplet-nest.ly
1
2 \version "2.7.39"
3
4 \header {
5     texidoc=" Tuplets may be nested."
6 }
7
8 \paper {
9   ragged-right = ##t  
10   indent = 0.0
11 }
12
13 \relative c'' {
14   \set tupletNumberFormatFunction = #fraction-tuplet-formatter
15   \times 4/6 {
16     \times 2/3 {
17       a a a
18     }
19     \times 3/5 {
20       a a a a a
21     }
22   }
23
24   s1*1/6
25   
26   \stemUp
27   \times 4/6 {
28     \times 2/3 {
29       a1*1/6 a f'
30     }
31     \times 3/5 {
32       c f g a b 
33     }
34   }
35   
36 }
37