]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/user-defined-time-signatures.ly
Issue 5148/2: three-sided-box snippet: use #:properties keyword
[lilypond.git] / Documentation / snippets / new / user-defined-time-signatures.ly
1 \version "2.19.16"
2
3 \header {
4   lsrtags = "rhythms"
5
6   texidoc = "
7 New time signature styles can be defined.  The time signature in
8 the second measure should be upside down in both staves.
9 "
10
11   doctitle = "User defined time signatures"
12 }
13
14 #(add-simple-time-signature-style 'topsy-turvy
15    (lambda (fraction)
16      (make-rotate-markup 180 (make-compound-meter-markup fraction))))
17
18 <<
19   \new Staff {
20     \time 3/4 f'2.
21     \override Score.TimeSignature.style = #'topsy-turvy
22     \time 3/4 R2. \bar "|."
23   }
24   \new Staff {
25     R2. e''
26   }
27 >>