From: David Kastrup Date: Mon, 3 Jun 2013 16:09:05 +0000 (+0200) Subject: Issue 3394: Let compound-time-signatures snippet use \compoundMeter X-Git-Tag: release/2.17.20-1~10 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=75edb97cc14a2a7e8e62064e4986afa3b4a43627;p=lilypond.git Issue 3394: Let compound-time-signatures snippet use \compoundMeter --- 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 +}