]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/beam-count.ly
instrument name fixup.
[lilypond.git] / input / test / beam-count.ly
index e815fbd90a0b22ea18111f1b8826a09b401cb8b2..891c28300d3947d7d5beebcbe6317efdf2defc9f 100644 (file)
@@ -1,26 +1,27 @@
 
-\version "2.1.23"
+%%\version "2.7.39"
 \header{
        texidoc="@cindex Beam Count
 
-You can alter the number of stems in a beam.  Here we see
-two sets of four 32nds joined as if they were 8th notes.
+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.
 
 " }
 
-fragment = \notes {
-  #(override-auto-beam-setting '(end * * * *)  1 4)
+\layout { ragged-right = ##t}  
+
+\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
 
-  f32 g a 
+  f32 g a 
   \set stemRightBeamCount = #1  b
-  \set stemLeftBeamCount = #1 a
-   g f
+  \set stemLeftBeamCount = #1 b
+  a g f
 }
-
-
-\score {
-  \notes\relative c \fragment
-  \paper { raggedright = ##t}  
-}
-