]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/reverting-default-beam-endings.ly
Add a regression test for 1062.
[lilypond.git] / Documentation / snippets / reverting-default-beam-endings.ly
index 4c29f92c44e6baabedce1c7e594f59f5e2a1d7b0..c0d974719f04fefc16f2d9558a10774b1ca1bbb6 100644 (file)
@@ -1,11 +1,11 @@
 % Do not edit this file; it is automatically
 % generated from Documentation/snippets/new
 % This file is in the public domain.
-%% Note: this file works from version 2.13.4
-\version "2.13.16"
+%% Note: this file works from version 2.13.29
+\version "2.13.29"
 
 \header {
-%% Translation of GIT committish: 1d589aa04c20d7711bf662618adbdd6d445db29d
+%% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b
   texidoces = "
 Para tipografiar las barras agrupadas en la forma @code{3-4-3-2}
 en 12/8, en primer lugar tenemos que sobreescribir los finales de
@@ -39,9 +39,8 @@ défaut relatifs à 12/8, puis ajouter nos propres règles :
 
   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"
 } % begin verbatim
@@ -54,7 +53,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
 }