]> git.donarmstrong.com Git - lilypond.git/blob - input/bugs/hjbugs.ly
input/bugs cleanup
[lilypond.git] / input / bugs / hjbugs.ly
1 %{
2
3 2) Grace-output broken: \grace a8 ~ a2 \grace a8 ~ a2
4
5 Expected : a8( )a2 a8( )a2
6 BUG-here : a8( )a2( a8 )a2
7
8 3) Vertical aligns of lines, i.e., line height incorrect:
9
10 c^#'(lines (finger "1" ""))  % upper 1,       lower 1
11 c^#'(lines (finger "1" "1")) % upper 1,       lower 1
12 \stemDown
13 c_#'(lines (finger "" "1"))  % upper 1/2 ?!?, lower 1 <- BUG IN UPPER LINE
14 c_#'(lines (finger "1" "1")) % upper 1,       lower 1
15
16 %}
17
18
19 \score { 
20      \notes \transpose c''
21      \context Voice {
22         <e>~<e>~<c e fis>~<b e f>   % paper & midi broken
23         <e>~<e>~<c e fis>~<b e f>   % here both are ok.
24         c^#'(lines (finger "1" ""))
25         c^#'(lines (finger "1" "1"))
26         \stemDown
27         c_#'(lines (finger "" "1"))  % wrong line height of an empty line
28         c_#'(lines (finger "1" "1")) 
29  
30         \grace a8 ~ a2 \grace a8 ~ a2 a8
31         % produces: a8( )a2( a8 )a2   and midi: a1 (a2 \grace a a -> a2)
32         % should be: a8( )a2 a8( )a2  should be: a2 a2 
33   }
34      \midi{}
35      \paper{}
36  }