]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/compound-time-signatures.ly
Use doctitle header field of LSR snippets
[lilypond.git] / input / lsr / compound-time-signatures.ly
index 7877ee704b8fc7d8ef466bcbd5b383367acc8317..b94107506ef9ae395db1aab19a56057eec308eed 100644 (file)
@@ -4,28 +4,30 @@
 
 \header {
   lsrtags = "rhythms"
- texidoc = "
+
+  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 behaviour. (You can even add graphic
-measure grouping indications; see the appropriate snippet in this
+adapting the automatic beaming behavior. (Graphic measure grouping
+indications can also be added; see the appropriate snippet in this
 database.) 
-" }
-% begin verbatim
+
+"
+  doctitle = "Compound time signatures"
+} % begin verbatim
 #(define (compound-time one two num)
   (markup #:override '(baseline-skip . 0) #:number
    (#:line ((#:column (one num)) #:vcenter "+" (#:column (two num))))
   ))
 
-\relative {
-  % compound time signature hack
+\relative {  
   \override Staff.TimeSignature #'stencil = #ly:text-interface::print
-  \override Staff.TimeSignature #'text = #( compound-time "2" "3" "8" )
+  \override Staff.TimeSignature #'text = #(compound-time "2" "3" "8")
   \time 5/8
   #(override-auto-beam-setting '(end 1 8 5 8) 1 4)
-  c8 d e fis gis |
-  c fis, gis e d |
-  c8 d e4  gis8
+  c8 d e fis gis
+  c fis, gis e d
+  c8 d e4 gis8
 }