X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fautomatic-beam-subdivisions.ly;h=926a1729e5a6ec515a48acb43eac42abf3e73393;hb=1d5ae2e5bf1ad495d0a901e3be88a6fcfa90b1a5;hp=a08bd6b1523cc1555e47558c29da7c3f1383c2f4;hpb=5160eccb26cee0bfd802d844233e4a8d795a1e94;p=lilypond.git diff --git a/Documentation/snippets/automatic-beam-subdivisions.ly b/Documentation/snippets/automatic-beam-subdivisions.ly index a08bd6b152..926a1729e5 100644 --- a/Documentation/snippets/automatic-beam-subdivisions.ly +++ b/Documentation/snippets/automatic-beam-subdivisions.ly @@ -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.29 -\version "2.13.31" +%% 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.19.40" \header { -%% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b - 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 beatStructure = #'(2 2 2 2) + \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) + \set baseMoment = #(ly:make-moment 1/16) + \set beatStructure = 4,4,4,4 b32^"baseMoment 1 16"[ a g f c' b a g] } } -