X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fautomatic-beam-subdivisions.ly;h=4aee41074c907467ed32061616ffbedfc3e446d6;hb=b319113e61dca137deead44f21280059fba35eca;hp=64903ea55f902740b1d9eae846016f469d1f7dcb;hpb=87aec4a93a0fe08275dd6cce6961dd9f80f581d1;p=lilypond.git diff --git a/Documentation/snippets/automatic-beam-subdivisions.ly b/Documentation/snippets/automatic-beam-subdivisions.ly index 64903ea55f..4aee41074c 100644 --- a/Documentation/snippets/automatic-beam-subdivisions.ly +++ b/Documentation/snippets/automatic-beam-subdivisions.ly @@ -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.10" +\version "2.17.20" \header { - lsrtags = "rhythms" - -%% Translation of GIT committish: 4385ed4cc738e164a95798862580b4b86703356f - 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] } } -