]> git.donarmstrong.com Git - lilypond.git/blob - input/test/time-signature-staff.ly
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / input / test / time-signature-staff.ly
1 %% todo: move into advanced notation section of the manual.
2
3 \header {
4
5   texidoc = "Time signatures may be put on a separate staff.  This is
6   used contemporary pieces with many time signature changes.  "
7
8 }
9 \version "2.7.39"
10 \layout {
11   ragged-right =  ##T
12 }
13
14 \layout{
15   \context { 
16     \type "Engraver_group"
17     \consists "Time_signature_engraver"
18     \consists "Axis_group_engraver"
19     \name "TimeSig"
20     \override TimeSignature #'font-size = #4
21   }
22   \context {
23     \Score \accepts TimeSig
24   }
25
26   \context { \Staff
27     \override TimeSignature #'transparent = ##t
28   }
29 }
30
31
32 \relative
33 << \new Staff { \time 2/4 c2 \time 3/4 c2. \time 4/4 c1 }
34    \new TimeSig {
35      \skip 4 * 9
36    }
37    \new Staff { r4 r r
38                 r4 r r
39                 r4 r r }
40
41  >>