]> git.donarmstrong.com Git - lilypond.git/blob - input/bugs/multiply.ly
0c2ba1827164d8917222c363e0dfe246be547719
[lilypond.git] / input / bugs / multiply.ly
1 \version "1.3.148"
2
3
4
5 % ugh: strange order of things, this:
6 %    a16 * 1/2 (
7 % must be 
8 %    a16 ( * 1/2
9
10 %{
11 ?? is this a bug? --hwn
12 %}
13
14 \score { 
15   \context Voice \notes\relative c {
16     % to see the magic: uncomment size stuff in init/paper20.ly
17         
18         c'4 c4
19         
20         \property Voice.fontSize= -2
21         % ugh ugh
22         b16 * 1 / 2 (
23         \property Voice.fontSize= 0 )
24         g4 *31/32
25         
26         a a g2
27         
28   }
29   \paper { }  
30   \midi { }
31 }