Kirk Howe wrote:

> and everything else works correctly.

Well, I took a look at the output and noticed that many of your beams 
are horizontal even though one clearly would expect them to go upwards.

The problem is examples like


\score {
     \notes \relative c'' {
        [c8 d e d' g, a b c]
     }
     \paper { linewidth = -1 }
}

where the single funny note confuses lilypond so that it makes a 
horizontal beams.
You can change this behaviour by setting the grob-property, 
concaveness-gap, like this:

\score {
     \notes \relative c'' {
        \property Voice.Beam \override #'concaveness-gap = #5.0
        [c8 d e d' g, a b c]
     }
     \paper { linewidth = -1 }
}


-Rune



_______________________________________________
Lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user

Reply via email to