X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fsubdividing-beams.ly;h=05f6b9bc9b942be33adae0fbf81c6bf218fe7f0f;hb=1c7aa062c6cec594b68479b240db33399f80f4e6;hp=b15e1b1dfa938da128c6621329961b126226a265;hpb=706d797884199982b6b849ba11942865d0b17fd2;p=lilypond.git diff --git a/Documentation/snippets/subdividing-beams.ly b/Documentation/snippets/subdividing-beams.ly index b15e1b1dfa..05f6b9bc9b 100644 --- a/Documentation/snippets/subdividing-beams.ly +++ b/Documentation/snippets/subdividing-beams.ly @@ -4,8 +4,8 @@ % and then run scripts/auxiliar/makelsr.py % % This file is in the public domain. -%% Note: this file works from version 2.19.34 -\version "2.19.34" +%% Note: this file works from version 2.19.40 +\version "2.19.40" \header { lsrtags = "rhythms" @@ -33,6 +33,7 @@ changed to match the new @code{baseMoment}: doctitle = "Subdividing beams" } % begin verbatim + \relative c'' { c32[ c c c c c c c] \set subdivideBeams = ##t @@ -40,22 +41,22 @@ changed to match the new @code{baseMoment}: % Set beam sub-group length to an eighth note \set baseMoment = #(ly:make-moment 1/8) - \set beatStructure = #'(2 2 2 2) + \set beatStructure = 2,2,2,2 c32[ c c c c c c c] % Set beam sub-group length to a sixteenth note \set baseMoment = #(ly:make-moment 1/16) - \set beatStructure = #'(4 4 4 4) + \set beatStructure = 4,4,4,4 c32[ c c c c c c c] % Shorten beam by 1/32 \set baseMoment = #(ly:make-moment 1/8) - \set beatStructure = #'(2 2 2 2) + \set beatStructure = 2,2,2,2 c32[ c c c c c c] r32 % Shorten beam by 3/32 \set baseMoment = #(ly:make-moment 1/8) - \set beatStructure = #'(2 2 2 2) + \set beatStructure = 2,2,2,2 c32[ c c c c] r16. - -} % begin verbatim + r2 +}