X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fbeam-grouping-in-7-8-time.ly;h=5d77375ddc432efbcdcc28037ac1ad9d08b35975;hb=743dc7b27888c776186336cf4b330d3ebfc821de;hp=9b758a5d8cc375d01f397badadc9bd843bc98e7c;hpb=f5bdd79efc48f52f3b1c86857f747afa3cb33dcf;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 9b758a5d8c..5d77375ddc 100644 --- a/Documentation/snippets/beam-grouping-in-7-8-time.ly +++ b/Documentation/snippets/beam-grouping-in-7-8-time.ly @@ -1,59 +1,28 @@ -% 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.10" +%% DO NOT EDIT this file manually; it is automatically +%% generated from LSR http://lsr.dsi.unimi.it +%% Make any changes in LSR itself, or in Documentation/snippets/new/ , +%% and then run scripts/auxiliar/makelsr.py +%% +%% This file is in the public domain. +\version "2.16.0" \header { -%% Translation of GIT committish: 341940d3830b59f93a80131471d622c2818afddb - 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 -barras automáticas se debe especificar la forma de agrupamiento. -Por ejemplo, para agrupar todas las barras en la forma 2-3-2 en el -compás de 7/8, especificamos los finales de barra en 2/8 y 5/8: - -" - doctitlees = "Agrupamiento de las barras en el compás de 7/8" - - -%% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d -texidocde = " -Es gibt keine automatischen Balkengruppen für 7/8-Takte. Wenn diese -Taktart benötigt wird, müssen die Gruppierungen definiert werden. Um -beispielsweise alle Noten in 2/8-3/8-2/8 aufzuteilen, müssen Balkenenden -für 2/8 und 5/8 definiert werden: - -" - doctitlede = "Balkengruppen für 7/8-Takte" - - -%% Translation of GIT committish: bee31293920d834cd3698f00ddcc2402c3164619 -texidocfr = " -Aucune règle de ligature automatique n'est disponible pour une mesure à -7/8. Il faudra donc, en pareil cas, définir vous-même les règles de -regroupement. Pour, par exemple, ligaturer sur la base de 2/8-3/8-2/8, -il faudra donc définir les terminaisons de 2/8 et 5/8 : - -" - doctitlefr = "Règle de ligature dans une mesure à 7/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: +so if automatic beams are required the grouping must be specified using +beatStructure. For example, to group all beams 2-3-2 in +7/8 time, specify beam endings at 2/8 and 5/8: + " doctitle = "Beam grouping in 7/8 time" } % begin verbatim - \relative c'' { \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 }