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