]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/beam-grouping-in-7-8-time.ly
Merge branch 'master' of git://git.savannah.gnu.org/lilypond.git
[lilypond.git] / Documentation / snippets / beam-grouping-in-7-8-time.ly
index 814f7829421a497fa1abb05b2e1778fe5f6d8a12..4fb1bbcc351b53e7e4d4d10fc96aa2d318f4aa36 100644 (file)
@@ -1,11 +1,14 @@
-% Do not edit this file; it is automatically
+% DO NOT EDIT this file manually; it is automatically
 % generated from Documentation/snippets/new
+% Make any changes in Documentation/snippets/new/
+% and then run scripts/auxiliar/makelsr.py
+%
 % This file is in the public domain.
-%% Note: this file works from version 2.13.4
-\version "2.13.10"
+%% Note: this file works from version 2.14.0
+\version "2.14.0"
 
 \header {
-%% Translation of GIT committish: 45fc8488655f9ea122d1ec6e3328892618bd6971
+%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
   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
@@ -17,7 +20,7 @@ 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
+%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
 texidocde = "
 Es gibt keine automatischen Balkengruppen für 7/8-Takte.  Wenn diese
 Taktart benötigt wird, müssen die Gruppierungen definiert werden.  Um
@@ -28,7 +31,7 @@ für 2/8 und 5/8 definiert werden:
   doctitlede = "Balkengruppen für 7/8-Takte"
 
 
-%% Translation of GIT committish: bee31293920d834cd3698f00ddcc2402c3164619
+%% Translation of GIT committish: 548076f550a2b7fb09f1260f0e5e2bb028ad396c
 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
@@ -40,10 +43,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 +56,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
 }