]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/new/compound-time-signatures.ly
LSR: Update.
[lilypond.git] / input / new / compound-time-signatures.ly
diff --git a/input/new/compound-time-signatures.ly b/input/new/compound-time-signatures.ly
deleted file mode 100644 (file)
index b55a3fd..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-\version "2.12.0"
-
-\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.) 
-
-"
-  doctitle = "Compound time signatures"
-}
-
-#(define ((compound-time one two num) grob)
-  (grob-interpret-markup grob
-    (markup #:override '(baseline-skip . 0) #:number
-      (#:line (
-          (#:column (one num))
-          #:vcenter "+"
-          (#:column (two num))))
-      )))
-
-\relative c' {
-  \override Staff.TimeSignature #'stencil = #(compound-time "2" "3" "8")
-  \time 5/8
-  #(override-auto-beam-setting '(end 1 8 5 8) 1 4)
-  c8 d e fis gis
-  c8 fis, gis e d
-  c8 d e4 gis8
-}