X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fbeam-endings-in-score-context.ly;h=a09e8853d06277e3d1fbb12e29b229982924f3fb;hb=25ca54b640c067e2286a1d7ba47f24a1b4dc070e;hp=f1902be45232aa60bfedab209c25fd494908f4e7;hpb=0b55335aeca1de539bf1125b717e0c21bb6fa31b;p=lilypond.git diff --git a/Documentation/snippets/beam-endings-in-score-context.ly b/Documentation/snippets/beam-endings-in-score-context.ly index f1902be452..a09e8853d0 100644 --- a/Documentation/snippets/beam-endings-in-score-context.ly +++ b/Documentation/snippets/beam-endings-in-score-context.ly @@ -1,46 +1,19 @@ -% 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.4 -\version "2.13.20" +%% 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.17.11" \header { -%% Translation of GIT committish: e0aa246e0ed1a86dc41a99ab79bff822d3320aa7 - texidoces = " -Las reglas de final de barra especificadas en el contexto -@code{Score} se aplican a todos los pentagramas, pero se pueden -modificar tanto en los niveles de @code{Staff} como de -@code{Voice}: - -" - doctitlees = "Finales de barra en el contexto Score" - - -%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40 - texidocde = " -Balkenenderegeln, die im @code{Score}-Kontext definiert werden, wirken -sich auf alle Systeme aus, können aber auf @code{Staff}- und -@code{Voice}-Ebene neu verändert werden: - -" - doctitlede = "Balkenenden auf Score-Ebene" - - - -%% Translation of GIT committish: 374d57cf9b68ddf32a95409ce08ba75816900f6b - texidocfr = " -Les règles de ligatures définies au niveau du contexte @code{Score} -s'appliqueront à toutes les portées. Il est toutefois possible de -moduler au niveau @code{Staff} ou @code{Voice} : - -" - doctitlefr = "Définition de règles de ligature pour la partition" - lsrtags = "rhythms" + texidoc = " Beam-ending rules specified in the @code{Score} context apply to all staves, but can be modified at both @code{Staff} and @code{Voice} levels: + " doctitle = "Beam endings in Score context" } % begin verbatim @@ -49,18 +22,15 @@ levels: \relative c'' { \time 5/4 % Set default beaming for all staves - \overrideBeamSettings #'Score #'(5 . 4) #'end - #'(((1 . 8) . (3 4 3)) - ((1 . 16) . (6 8 6)) - ((1 . 32) . (12 16 12))) + \set Score.baseMoment = #(ly:make-moment 1/8) + \set Score.beatStructure = #'(3 4 3) << \new Staff { c8 c c c c c c c c c } \new Staff { % Modify beaming for just this staff - \overrideBeamSettings #'Staff #'(5 . 4) #'end - #'((* . (3 2))) + \set Staff.beatStructure = #'(6 4) c8 c c c c c c c c c } \new Staff { @@ -73,8 +43,7 @@ levels: % Modify beaming for this voice only \new Voice { \voiceTwo - \overrideBeamSettings #'Voice #'(5 . 4) #'end - #'((* . (3 2))) + \set Voice.beatStructure = #'(6 4) a8 a a a a a a a a a } >>