]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/new/reverting-default-beam-endings.ly
Remove hard-coded links to v2.13 docs (issue 2399).
[lilypond.git] / Documentation / snippets / new / reverting-default-beam-endings.ly
index fce28adcd8fba7f6a81812f32fcba595673bd8fd..d771c60161ef643e8e5a5878c85cc5e075502e93 100644 (file)
@@ -1,11 +1,10 @@
-\version "2.13.4"
+\version "2.14.0"
 
 \header {
   lsrtags = "rhythms"
   texidoc = "
-To typeset beams grouped @code{3-4-3-2} in 12/8 it is no longer
-necessary first to override the default beam endings in 12/8,and
-then to set up the new beaming endings:
+To typeset beams grouped @code{3-4-3-2} one need only change the
+beat structure:
 "
   doctitle = "Reverting default beam endings"
 }
@@ -17,7 +16,6 @@ then to set up the new beaming endings:
   a8 a a a a a a a a a a a
 
   % Set new values for beam endings
-  \overrideBeamSettings #'Score #'(12 . 8) #'end
-    #'((* . (3 4 3 2)))
+  \set Score.beatStructure = #'(3 4 3 2)
   a8 a a a a a a a a a a a
 }