]> 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 8170ca80609cdaf4880881bc94517a0236fe0211..40e9e04d68ee6d365fea613b03c4af546c002210 100644 (file)
@@ -1,23 +1,13 @@
-% 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.14.0
-\version "2.14.0"
+%% 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.17.11"
 
 \header {
-%% Translation of GIT committish: 8b93de6ce951b7b14bc7818f31019524295b990f
-  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 = "rhythms"
+  lsrtags = "automatic-notation, connecting-notes, rhythms"
 
   texidoc = "
 Beams can be subdivided automatically.  By setting the property
@@ -28,7 +18,6 @@ specified in @code{baseMoment}).
   doctitle = "Automatic beam subdivisions"
 } % begin verbatim
 
-
 \new Staff {
   \relative c'' {
     <<
@@ -45,12 +34,11 @@ specified in @code{baseMoment}).
       }
     >>
     \oneVoice
-    \set baseMoment = #(ly:make-moment 1 8)
+    \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 baseMoment = #(ly:make-moment 1/16)
     \set beatStructure = #'(4 4 4 4)
     b32^"baseMoment 1 16"[ a g f c' b a g]
   }
 }
-