]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/beam-count.ly
* Documentation/user/latex-lilypond-example.latex:
[lilypond.git] / input / test / beam-count.ly
index f2ac4a48a98fdda499b737c896fcae831c3c4a8d..630baa5bdeff421955b33295b231821d80e46d5b 100644 (file)
@@ -1,26 +1,21 @@
 
-\version "2.1.22"
+\version "2.3.17"
 \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 autoBeamSettings  #'(end * * * *) = #(ly:make-moment 1 4)
+\paper { raggedright = ##t}  
+
+\relative {
+  #(override-auto-beam-setting '(end * * * *)  1 4)
   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}  
-}
-