X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Ftest%2Fbeam-count.ly;h=891c28300d3947d7d5beebcbe6317efdf2defc9f;hb=a067c17f1883996a25c866e6b86d387fc989cf68;hp=8258679872986c53a14b08de7a17fbc5ff82254d;hpb=4eb6f42fc6ca20d65c788a73eb78dfcc22ea0453;p=lilypond.git diff --git a/input/test/beam-count.ly b/input/test/beam-count.ly index 8258679872..891c28300d 100644 --- a/input/test/beam-count.ly +++ b/input/test/beam-count.ly @@ -1,21 +1,27 @@ +%%\version "2.7.39" +\header{ + texidoc="@cindex Beam Count -fragment = \notes { - f'32 g a b b a g f +You can alter the number of stems in a beam. In this example, +two sets of four 32nds are joined, as if they were 8th notes. - \property Voice.autoBeamSettings - \set #'(end * * * *) = #(make-moment 1 4) - f32 g a b b a g f +" } - f32 g a - \property Voice.stemRightBeamCount = #1 b - \property Voice.stemLeftBeamCount = #1 b - a g f -} +\layout { ragged-right = ##t} -\paper { linewidth = -1.; } +\relative { + %% This has now (2.5.21) changed, (end * * * *) no longer + %% masks the default config entry ('(end * * 2 4) 1 4)) + %% rather than masking by override: + %% #(override-auto-beam-setting '(end * * * *) 1 4) + %% revert the config file settings. + #(revert-auto-beam-setting '(end 1 32 4 4) 1 8) + #(revert-auto-beam-setting '(end 1 32 4 4) 3 8) + f32 g a b b a g f -\score { - \notes\relative c \fragment - \paper { } + f32 g a + \set stemRightBeamCount = #1 b + \set stemLeftBeamCount = #1 b + a g f }