X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fbeam-endings-in-score-context.ly;h=b746d6fe3e1257853d5c6a2288e20984732825be;hb=252ec5e71b5e121734a9c9897245137cb07e4a1f;hp=81fba58c34c508e363b3da58ce6a1de2ec7c22fb;hpb=e88eca13f1a87dbd3a57a7a492deea95b0473753;p=lilypond.git diff --git a/Documentation/snippets/beam-endings-in-score-context.ly b/Documentation/snippets/beam-endings-in-score-context.ly index 81fba58c34..b746d6fe3e 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.20" +%% Note: this file works from version 2.14.0 +\version "2.14.0" \header { -%% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b +%% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98 texidoces = " Las reglas de final de barra especificadas en el contexto @code{Score} se aplican a todos los pentagramas, pero se pueden @@ -27,18 +30,18 @@ sich auf alle Systeme aus, können aber auf @code{Staff}- und -%% Translation of GIT committish: 374d57cf9b68ddf32a95409ce08ba75816900f6b +%% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4 texidocfr = " -Les règles de ligatures définies au niveau du contexte @code{Score} +Les règles de ligature 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 } >>