X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fbeam-grouping-in-7-8-time.ly;h=d478bdc5c2f3233a50f4a27612f98741271ca37c;hb=12fa3b3eb8aabfd7fd3cc5df90b8f6ba519cecc5;hp=0f139c9ca4a92f215c34095a2e9546617873a0e1;hpb=162b5d842f34770c92b173878348a0afcc81f281;p=lilypond.git diff --git a/Documentation/snippets/beam-grouping-in-7-8-time.ly b/Documentation/snippets/beam-grouping-in-7-8-time.ly index 0f139c9ca4..d478bdc5c2 100644 --- a/Documentation/snippets/beam-grouping-in-7-8-time.ly +++ b/Documentation/snippets/beam-grouping-in-7-8-time.ly @@ -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.31" \header { -%% Translation of GIT committish: 5a7301fc350ffc3ab5bd3a2084c91666c9e9a549 +%% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b texidoces = " No está especificada ninguna agrupación predeterminada automática de las barras para el compás de 7/8, de forma que si se requieren @@ -40,10 +40,10 @@ il faudra donc définir les terminaisons de 2/8 et 5/8 : lsrtags = "rhythms" texidoc = " -There are no default automatic beam groupings specified for 7/8 time, -so if automatic beams are required the grouping must be specified. For -example, to group all beams 2-3-2 in 7/8 time, specify beam endings at -2/8 and 5/8: +There is no default beat structure specified for 7/8 time, +so if automatic beams are required the structure must be specified. For +example, to group all beams 2-3-2 in 7/8 time, specify the +beat structure to be (2 3 2): " doctitle = "Beam grouping in 7/8 time" } % begin verbatim @@ -53,7 +53,6 @@ example, to group all beams 2-3-2 in 7/8 time, specify beam endings at \time 7/8 % rhythm 2-3-2 a8 a a a a a a - \overrideBeamSettings #'Score #'(7 . 8) #'end - #'((* . (2 3 2))) + \set Score.beatStructure = #'(2 3 2) a8 a a a a a a }