]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/automatic-beam-subdivisions.ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / automatic-beam-subdivisions.ly
index f75f4b5f9a7b0e37f2108be7ef977f2d5fb15398..43d34b39ad5ea67f2070d62497debbada2117f12 100644 (file)
@@ -1,20 +1,42 @@
 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
 %% This file is in the public domain.
-%% Tags: rhythms
-\version "2.11.35"
+\version "2.11.62"
 
-\header { texidoc = "
-Lilypond can subdivide beams automatically. Set the property
-subdivideBeams, and beams are subdivided at beat positions (as
-specified in beat length)
-" }
-% begin verbatim
-\relative{ b'32^"default"[ a g f c' b a g f e d' c b a g f ]
-              \set subdivideBeams = ##t
-              b32^"subdivision enabled"[ a g f c' b a g f e d' c b a g f ] 
-              \set Score.beatLength = #(ly:make-moment 1 8)
-              b32^"beatLength 1 8"[ a g f c' b a g f e d' c b a g f ]
-              \set Score.beatLength = #(ly:make-moment 1 16)
-              b32^"beatLength 1 16"[ a g f c' b a g f e d' c b a g f ]
+\header {
+  lsrtags = "rhythms"
+
+  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"
+
+  texidoc = "
+Beams can be subdivided automatically.  By setting the property
+@code{subdivideBeams}, beams are subdivided at beat positions (as
+specified in @code{beatLength}). 
+
+"
+  doctitle = "Automatic beam subdivisions"
+} % begin verbatim
+\score {
+  \new Staff \relative c'' {
+    << {
+      \voiceOne
+      \set subdivideBeams = ##t
+      b32[ a g f c' b a g b^"subdivide beams" a g f c' b a g]
+      \oneVoice
     }
+    \new Voice {
+      \voiceTwo
+      b32_"default"[ a g f c' b a g b a g f c' b a g]
+    } >>
+    \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]
+  }
+}