X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fautomatic-beam-subdivisions.ly;h=dd1217ca594f6ddbeb7dfdb478541c94ab92538d;hb=8ff18a6c95a828912fd742684d8e414f18fc3665;hp=4810303f81ad6f3546e1217242b13f6569f14d5c;hpb=17463ba49a755dca5682ba18af450c198d94e050;p=lilypond.git diff --git a/Documentation/snippets/automatic-beam-subdivisions.ly b/Documentation/snippets/automatic-beam-subdivisions.ly index 4810303f81..dd1217ca59 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.15" \header { - lsrtags = "rhythms" - -%% Translation of GIT committish: 45fc8488655f9ea122d1ec6e3328892618bd6971 - 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] } } -