]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/beam-shortened-lengths.ly
Merge branch 'lilypond/translation' into staging
[lilypond.git] / input / regression / beam-shortened-lengths.ly
index af59c37daf5f842114542808db27ed13e993bd7a..a79917d3231f6a11460085c498dc19e8269b4ec7 100644 (file)
@@ -1,18 +1,15 @@
-#(ly:set-option 'old-relative)
-\version "1.9.0"
+
+\version "2.14.0"
 
 \header{
-    texidoc="Beams in unnatural direction, have shortened stems, but do not look too short."
-    }
+  texidoc="Beams in unnatural direction, have shortened stems, but do not look too short."
+}
+\layout{ ragged-right = ##t }
+
+
+\relative c'{
+  \override Beam #'skip-quanting = ##t
+  \stemUp
+  f'4  f8[ f]  f16[ f]  f32[ f]  f64[ f]  f128[ f] 
+}
 
-\score{
-    \notes\relative c'{
-       \property Voice.Beam \set #'position-callbacks =
-        #`(,Beam::least_squares
-        ,Beam::check_concave
-        ,Beam::slope_damping)
-       \stemUp
-        f'4  f8-[ f]  f16-[ f]  f32-[ f]  f64-[ f]  f128-[ f] 
-    }
-    \paper{ raggedright = ##t}
-}