]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/slur-beautiful.ly
* scripts/convert-ly.py (conv): remove \notes.
[lilypond.git] / input / test / slur-beautiful.ly
index 0aa13d9efe0c4c090a61b3ede7ab569d726a79d5..e3e754c52817f8b14ac54282f1c7680223ae7868 100644 (file)
@@ -1,22 +1,22 @@
-\version "1.7.18"
-\header {
-    texidoc ="Similarly, the curvature of a slur is adjusted to stay clear of note
-heads and stems.  When that would increase the curvature too much, the
-slur is reverted to its default shape.  The threshold for this
-decision is in Slur's object property @code{beautiful}.
-It is loosely related to the enclosed area between the slur and the
-notes.  Usually, the default setting works well, but in some cases you
-may prefer a curved slur when LilyPond decides for a vertically moved
-one.  You can indicate this preference by increasing the
-@code{beautiful} value."
+
+\version "2.3.4"
+
+\header { texidoc ="@cindex Slur Beautiful
+The curvature of a slur is adjusted to stay away from note heads and 
+stems. When the curvature would increase much, the slur is reverted 
+to its default shape.  The Slur's property @code{beautiful} (which is 
+loosely related to the enclosed area between the slur and the notes)
+controls the transition point, and by increasing that value you may
+keep slurs more curved.
+"
 }
 
-\score { \notes {\relative c' {
+\score {  {\relative c' {
   \stemDown \slurUp
-  c16-( a' f' a a f a, c,-)
-  c-( a' f' a a f d, c-)
-  \property Voice.Slur \override #'beautiful = #5.0
-  c-( a' f' a a f d, c-)
+  c16( a' f' a a f a, c,)
+  c( a' f' a a f d, c)
+  \override Slur  #'beautiful = #5.0
+  c( a' f' a a f d, c)
 }}
 \paper { raggedright = ##t }
 }