]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/beam-chord.ly
release commit
[lilypond.git] / input / regression / beam-chord.ly
1 \version "1.7.18"
2 \header {
3     
4 texidoc = "If the first and last outer notes of a beam are the same,
5 the beam should be be horizontal.  "
6
7 }
8 \score{
9         \notes  \transpose c' c'{
10
11 % this property doesn't appear to change the output in 1.7.19.
12 \property Voice.Beam \set #'position-callbacks =
13  #`(,Beam::least_squares
14                                ,Beam::check_concave
15                                ,Beam::slope_damping
16                                ,Beam::shift_region_to_valid
17         
18                               )
19                  a'8-[ <<a' g''>>]
20                  c-[ <<c e,>>]
21                  a'16-[ <<a' g''>>]
22                  c-[ <<c e,>>]
23                  a'32-[ <<a' g''>>]
24                  c-[ <<c e,>>]
25         }
26         \paper{
27
28                 linewidth = 66.0\mm
29         }
30 }
31 %% new-chords-done %%