]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/new/grouping-beats.ly
LSR: Update.
[lilypond.git] / Documentation / snippets / new / grouping-beats.ly
diff --git a/Documentation/snippets/new/grouping-beats.ly b/Documentation/snippets/new/grouping-beats.ly
new file mode 100644 (file)
index 0000000..0f09399
--- /dev/null
@@ -0,0 +1,20 @@
+\version "2.13.4"
+
+\header {
+  lsrtags = "rhythms"
+  texidoc = "
+Beaming patterns may be altered with the @code{beatGrouping} property:
+
+"
+  doctitle = "Grouping beats"
+}
+
+\relative c'' {
+  \time 5/16
+  \overrideBeamSettings #'Score #'(5 . 16) #'end
+    #'((* . (2 3)))
+  c8^"(2+3)" c16 c8
+  \overrideBeamSettings #'Score #'(5 . 16) #'end
+    #'((* . (3 2)))
+  c8^"(3+2)" c16 c8
+}