X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fautomatic-beam-subdivisions.ly;h=0156278c8f00ee762fd8a46ef11e0fd9dc3864cb;hb=38d7d319eabc906e82fb42002678c6d42a23b6f7;hp=170001482206aa9aef5484f3d018c3acf0061e1f;hpb=8dbc847638b24a60ca66110850cc020aeb69b646;p=lilypond.git diff --git a/input/lsr/automatic-beam-subdivisions.ly b/input/lsr/automatic-beam-subdivisions.ly index 1700014822..0156278c8f 100644 --- a/input/lsr/automatic-beam-subdivisions.ly +++ b/input/lsr/automatic-beam-subdivisions.ly @@ -1,34 +1,46 @@ %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it %% This file is in the public domain. -\version "2.11.38" +\version "2.13.0" \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 +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 { - << { - \voiceOne - \set subdivideBeams = ##t - b'32[ 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] - } >> + +\new Staff { + \relative c'' { + << + { + \voiceOne + \set subdivideBeams = ##t + b32[ a g f c' b a g + b32^"subdivide beams" a g f c' b a g] + } + \new Voice { + \voiceTwo + b32_"default"[ a g f c' b a g + b32 a g f c' b a g] + } + >> + \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] } } -