X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fbeam-endings-in-score-context.ly;h=639ae968981d3e6bb6cf65d331470e6deb2130f5;hb=85d6fa8585a1b228cc8cb69810cf4f1d508251b7;hp=16840b32b6819bdb15f431137b49d95c9acb3d51;hpb=92782fde87fb68e945b9eb60cacab6c01d0397df;p=lilypond.git diff --git a/Documentation/snippets/beam-endings-in-score-context.ly b/Documentation/snippets/beam-endings-in-score-context.ly index 16840b32b6..639ae96898 100644 --- a/Documentation/snippets/beam-endings-in-score-context.ly +++ b/Documentation/snippets/beam-endings-in-score-context.ly @@ -1,11 +1,14 @@ -% Do not edit this file; it is automatically +% DO NOT EDIT this file manually; it is automatically % generated from Documentation/snippets/new +% Make any changes in Documentation/snippets/new/ +% and then run scripts/auxiliar/makelsr.py +% % This file is in the public domain. -%% Note: this file works from version 2.13.4 -\version "2.13.4" +%% Note: this file works from version 2.14.0 +\version "2.14.0" \header { -%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca +%% Translation of GIT committish: 615cbf212fdaf0b220b3330da417d0c3602494f2 texidoces = " Las reglas de final de barra especificadas en el contexto @code{Score} se aplican a todos los pentagramas, pero se pueden @@ -16,7 +19,7 @@ modificar tanto en los niveles de @code{Staff} como de doctitlees = "Finales de barra en el contexto Score" -%% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d +%% 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 @@ -27,18 +30,18 @@ sich auf alle Systeme aus, können aber auf @code{Staff}- und -%% Translation of GIT committish: 21c8461ea87cd670a35a40b91d3ef20de03a0409 +%% 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} : +moduler au niveau @code{Staff} ou @code{Voice}@tie{}: " 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 +Beat structure rules specified in the @code{Score} context apply to all staves, but can be modified at both @code{Staff} and @code{Voice} levels: " @@ -49,18 +52,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 +73,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 } >>