]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/automatic-beam-subdivisions.ly
Merge remote-tracking branch 'origin/master' into translation
[lilypond.git] / Documentation / snippets / automatic-beam-subdivisions.ly
index 906d64a6c7861b0aff06ce7d80b6cb658c1da725..ae63f423c28b832141dd1207cc3fd0ccd147b175 100644 (file)
@@ -1,20 +1,13 @@
-% 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.36
-\version "2.13.36"
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.di.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.18.0"
 
 \header {
-%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
-  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
@@ -25,7 +18,6 @@ specified in @code{baseMoment}).
   doctitle = "Automatic beam subdivisions"
 } % begin verbatim
 
-
 \new Staff {
   \relative c'' {
     <<
@@ -42,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]
   }
 }
-