]> git.donarmstrong.com Git - lilypond.git/commitdiff
Issue 3394: Let compound-time-signatures snippet use \compoundMeter
authorDavid Kastrup <dak@gnu.org>
Mon, 3 Jun 2013 16:09:05 +0000 (18:09 +0200)
committerDavid Kastrup <dak@gnu.org>
Sun, 9 Jun 2013 08:03:35 +0000 (10:03 +0200)
Documentation/snippets/new/compound-time-signatures.ly [new file with mode: 0644]

diff --git a/Documentation/snippets/new/compound-time-signatures.ly b/Documentation/snippets/new/compound-time-signatures.ly
new file mode 100644 (file)
index 0000000..693ed00
--- /dev/null
@@ -0,0 +1,22 @@
+\version "2.17.15"
+
+\header {
+  lsrtags = "rhythms"
+
+  texidoc = "
+Odd 20th century time signatures (such as \\\"5/8\\\") can often be
+played as compound time signatures (e.g. \\\"3/8 + 2/8\\\"), which
+combine two or more inequal metrics. LilyPond can make such music quite
+easy to read and play, by explicitly printing the compound time
+signatures and adapting the automatic beaming behavior.
+
+"
+  doctitle = "Compound time signatures"
+}
+
+\relative c' {
+  \compoundMeter #'((2 8) (3 8))
+  c8 d e fis gis
+  c8 fis, gis e d
+  c8 d e4 gis8
+}