From 75edb97cc14a2a7e8e62064e4986afa3b4a43627 Mon Sep 17 00:00:00 2001 From: David Kastrup Date: Mon, 3 Jun 2013 18:09:05 +0200 Subject: [PATCH] Issue 3394: Let compound-time-signatures snippet use \compoundMeter --- .../snippets/new/compound-time-signatures.ly | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Documentation/snippets/new/compound-time-signatures.ly diff --git a/Documentation/snippets/new/compound-time-signatures.ly b/Documentation/snippets/new/compound-time-signatures.ly new file mode 100644 index 0000000000..693ed00469 --- /dev/null +++ b/Documentation/snippets/new/compound-time-signatures.ly @@ -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 +} -- 2.39.5