]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/time-signature-single-c.ly
Issue 3286: add single-C time signature style
[lilypond.git] / input / regression / time-signature-single-c.ly
1 \version "2.19.16"
2
3 \header {
4   texidoc = "The single-C time signature style prints a C for any time signature with 4 in the numerator and prints a cut-C for any time signature with 2 in the numerator."
5 }
6
7 \layout { indent = 0 }
8
9 \new Staff {
10   \relative f' {
11     \override Staff.TimeSignature.style = #'single-C
12     \time 1/2 f2^"1/2"
13     \time 2/2 f2^"2/2" f
14     \time 2/1 f1^"2/1" f
15     \time 3/4 f4^"3/4" f f
16     \time 4/4 f4^"4/4" f f f
17     \time 4/2 f2^"4/2" f f f
18     \time 4/1 f1^"4/1" f f f
19   }
20 }