]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/beam-default-lengths.ly
* lily/parser.yy (relative_music): whoops. All \relative were off
[lilypond.git] / input / regression / beam-default-lengths.ly
1 #(ly:set-option 'old-relative)
2 \version "1.9.1"
3
4 \header{
5     texidoc="Beamed stems have standard lengths if possible."
6     }
7
8 \score{
9     \notes\relative c'{
10         \property Voice.Beam \set #'position-callbacks =
11          #`(,Beam::least_squares
12          ,Beam::check_concave
13          ,Beam::slope_damping)
14
15         f4  f8[ f]  f16[ f]  f32[ f]  f64[ f]  f128[ f] 
16     }
17     \paper{ raggedright = ##t}
18 }