X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fbeam-endings-in-score-context.ly;h=1a05b166c1e73ad452b8ea55692ab1fc7a531065;hb=f2fbf0dd215c8af6a30aae6c9634f3b92333b0ab;hp=6aa793fe111f5892f72a604a71233a37bec94103;hpb=3f912dfe2d4aacfac95d1565e5d60ab02346945e;p=lilypond.git diff --git a/Documentation/snippets/beam-endings-in-score-context.ly b/Documentation/snippets/beam-endings-in-score-context.ly index 6aa793fe11..1a05b166c1 100644 --- a/Documentation/snippets/beam-endings-in-score-context.ly +++ b/Documentation/snippets/beam-endings-in-score-context.ly @@ -1,11 +1,11 @@ % 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" +%% Note: this file works from version 2.13.36 +\version "2.13.36" \header { -%% Translation of GIT committish: 5a7301fc350ffc3ab5bd3a2084c91666c9e9a549 +%% Translation of GIT committish: fa19277d20f8ab0397c560eb0e7b814bd804ecec texidoces = " Las reglas de final de barra especificadas en el contexto @code{Score} se aplican a todos los pentagramas, pero se pueden @@ -27,18 +27,18 @@ sich auf alle Systeme aus, können aber auf @code{Staff}- und -%% Translation of GIT committish: 374d57cf9b68ddf32a95409ce08ba75816900f6b +%% 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 +49,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 +70,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 } >>