]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/subdividing-beams.ly
Add '-dcrop' option to ps and svg backends
[lilypond.git] / Documentation / snippets / subdividing-beams.ly
index b15e1b1dfa938da128c6621329961b126226a265..05f6b9bc9b942be33adae0fbf81c6bf218fe7f0f 100644 (file)
@@ -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
+}