X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fbeam-endings-in-score-context.ly;h=c517b35ecfffff7cdf8ed53a282de121ea1c40e5;hb=58dbefb1d96549bfa612629a67405edef13f2b9b;hp=1c340524c452037fa648a8e4d7767baa4afdc8bf;hpb=e1a149d0cc60b02e86209387958f4028567dd366;p=lilypond.git diff --git a/Documentation/snippets/beam-endings-in-score-context.ly b/Documentation/snippets/beam-endings-in-score-context.ly index 1c340524c4..c517b35ecf 100644 --- a/Documentation/snippets/beam-endings-in-score-context.ly +++ b/Documentation/snippets/beam-endings-in-score-context.ly @@ -1,63 +1,35 @@ -% 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 = " -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: 190a067275167c6dc9dd0afef683d14d392b7033 - 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}@tie{}: - -" - doctitlefr = "Définition de règles de ligature pour la partition" - lsrtags = "rhythms" + texidoc = " -Beat structure rules specified in the @code{Score} context apply to all +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 - \relative c'' { \time 5/4 % Set default beaming for all staves - \set Score.baseMoment = #(ly:make-moment 1 8) - \set Score.beatStructure = #'(3 4 3) + \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 - \set Staff.beatStructure = #'(6 4) + \set Staff.beatStructure = 6,4 c8 c c c c c c c c c } \new Staff { @@ -70,7 +42,7 @@ levels: % Modify beaming for this voice only \new Voice { \voiceTwo - \set Voice.beatStructure = #'(6 4) + \set Voice.beatStructure = 6,4 a8 a a a a a a a a a } >>