1\version "2.19.21"
2
3\header {
4  texidoc = "This test covers the mensural and neomensural time signature styles."
5}
6
7% N.B. It's strange that these warnings are doubled.
8#(ly:expect-warning "Cannot find glyph timesig.mensural11")
9#(ly:expect-warning "Cannot find glyph timesig.mensural11")
10#(ly:expect-warning "Cannot find glyph timesig.neomensural11")
11#(ly:expect-warning "Cannot find glyph timesig.neomensural11")
12
13\layout { indent = 0 }
14
15testMusic = \relative {
16    \time 4/4 \partial 4 f'4
17    \time 2/2 \partial 4 f4
18    \time 6/4 \partial 4 f4
19    \time 6/8 \partial 4 f4
20    \time 3/2 \partial 4 f4
21    \time 3/4 \partial 4 f4
22    \time 9/4 \partial 4 f4
23    \time 9/8 \partial 4 f4
24    \time 4/8 \partial 4 f4
25    \time 2/4 \partial 4 f4
26    \time 1/1 \partial 4 f4
27}
28
29\new Staff {
30    \override Staff.TimeSignature.break-visibility = ##(#f #t #t)
31    \override Staff.TimeSignature.style = #'mensural
32    \testMusic \break
33    \override Staff.TimeSignature.style = #'neomensural
34    \testMusic \break
35}
36