]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/new/compound-time-signatures.ly
Doc-fr: updates texidocs
[lilypond.git] / Documentation / snippets / new / compound-time-signatures.ly
index de0d73f6d5c2e2e7a671eb8c076f5328761204d1..693ed0046996bd56acb86f3409fcb6eeae8d5e6d 100644 (file)
@@ -1,19 +1,22 @@
-\version "2.14.0"
+\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. (Graphic measure grouping
-indications can also be added; see the appropriate snippet in this
-database.)
+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"
 }
 
-\markup {
-  This snippet is deprecated as of 2.15.9 and will be removed in 2.16
+\relative c' {
+  \compoundMeter #'((2 8) (3 8))
+  c8 d e fis gis
+  c8 fis, gis e d
+  c8 d e4 gis8
 }