]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/beam-control.ly
* input/test/figured-bass-alternative.ly: fix accidental.
[lilypond.git] / input / test / beam-control.ly
index 9db8d01abf6f4d1e71b2847e8589774cd845b16c..1f31ae3b26c638602f56df2ddcd361f64fdda332 100644 (file)
@@ -1,21 +1,26 @@
-\version "1.7.16"
+
+\version "2.1.7"
 \header{
-    texidoc="Controlling beam positions."
-}
+    texidoc="@cindex Beam Position Control
+
+Beam positions may be controlled manually, by setting @code{positions} in the @code{Beam} grob.
+
+" }
 \score { 
     \context Voice \notes\relative c {
        %% from upper staffline (position 4) to centre (position 0)
        \property Voice.Beam \override #'positions = #'(2 . 0)
-       [c'8 c] 
+        c'8[ c] 
        
        %% from center to one above centre (position 2)
        \property Voice.Beam \override #'positions = #'(0 . 1)
-       [c c]
+        c[ c]
        
        %% normal beam-algorithm
        \property Voice.Beam \revert #'positions
        \property Voice.Beam \revert #'positions
-       [c e] [e c]
+        c[ e]  e[ c]
   }
+\paper{raggedright = ##t}
 }
-%% new-chords-done %%
+