]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/automatic-beam-subdivisions.ly
Merge branch 'translation' into staging
[lilypond.git] / Documentation / snippets / automatic-beam-subdivisions.ly
index 79bf5d015b513966c24f7e7471dbb9f4ee75fc9d..40e9e04d68ee6d365fea613b03c4af546c002210 100644 (file)
@@ -1,24 +1,18 @@
-%% Do not edit this file; it is automatically
+%% 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.13.16"
+\version "2.17.11"
 
 \header {
-  lsrtags = "rhythms"
-
-%% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
-  texidoces = "
-Se pueden subdividir las barras automáticamente.  Estableciendo la
-propiedad @code{subdivideBeams}, las barras se subdividen en
-posiciones de pulso (tal y como se especifica en @code{beatLength}).
-
-"
-  doctitlees = "Subdivisiones de barra automáticas"
+  lsrtags = "automatic-notation, connecting-notes, rhythms"
 
   texidoc = "
 Beams can be subdivided automatically.  By setting the property
 @code{subdivideBeams}, beams are subdivided at beat positions (as
-specified in @code{beatLength}).
+specified in @code{baseMoment}).
 
 "
   doctitle = "Automatic beam subdivisions"
@@ -40,10 +34,11 @@ specified in @code{beatLength}).
       }
     >>
     \oneVoice
-    \set beatLength = #(ly:make-moment 1 8)
-    b32^"beatLength 1 8"[ a g f c' b a g]
-    \set beatLength = #(ly:make-moment 1 16)
-    b32^"beatLength 1 16"[ a g f c' b a g]
+    \set baseMoment = #(ly:make-moment 1/8)
+    \set beatStructure = #'(2 2 2 2)
+    b32^"baseMoment 1 8"[ a g f c' b a g]
+    \set baseMoment = #(ly:make-moment 1/16)
+    \set beatStructure = #'(4 4 4 4)
+    b32^"baseMoment 1 16"[ a g f c' b a g]
   }
 }
-