]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/beam-count.ly
* input/: Convert ly files that still had \property. Fixes make
[lilypond.git] / input / test / beam-count.ly
index ea6cf3e3d7b3b719100e412caa4a84036ebe9c5b..f2ac4a48a98fdda499b737c896fcae831c3c4a8d 100644 (file)
@@ -1,22 +1,26 @@
-\version "1.7.3"
 
+\version "2.1.22"
+\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.  Here we see
+two sets of four 32nds joined as if they were 8th notes.
+
+" }
 
-  \property Voice.autoBeamSettings
-    \set #'(end * * * *) = #(ly:make-moment 1 4)
+fragment = \notes {
+  \override autoBeamSettings  #'(end * * * *) = #(ly: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
+  f32 g a b 
+  \set stemRightBeamCount = #1  b
+  \set stemLeftBeamCount = #1 a
+   g f
 }
 
-\paper { linewidth = -1. } 
 
 \score {
   \notes\relative c \fragment
-  \paper { }  
+  \paper { raggedright = ##t}  
 }
+