]> git.donarmstrong.com Git - lilypond.git/blob - input/test/slur-beautiful.ly
Renamed file.
[lilypond.git] / input / test / slur-beautiful.ly
1 \version "1.7.18"
2 \header {
3     texidoc ="Similarly, the curvature of a slur is adjusted to stay clear of note
4 heads and stems.  When that would increase the curvature too much, the
5 slur is reverted to its default shape.  The threshold for this
6 decision is in Slur's object property @code{beautiful}.
7 It is loosely related to the enclosed area between the slur and the
8 notes.  Usually, the default setting works well, but in some cases you
9 may prefer a curved slur when LilyPond decides for a vertically moved
10 one.  You can indicate this preference by increasing the
11 @code{beautiful} value."
12 }
13
14 \score { \notes {\relative c' {
15   \stemDown \slurUp
16   c16-( a' f' a a f a, c,-)
17   c-( a' f' a a f d, c-)
18   \property Voice.Slur \override #'beautiful = #5.0
19   c-( a' f' a a f d, c-)
20 }}
21 \paper { raggedright = ##t }
22 }