%% Generated by lilypond-book
%% Options: [exampleindent=10.16\mm,indent=0\mm,line-width=160\mm,paper-height=845.047\pt,paper-width=597.508\pt,papersize='(cons (* 597.508 pt) (* 845.047 pt))]
\include "lilypond-book-preamble.ly"


% ****************************************************************
% Start cut-&-pastable-section
% ****************************************************************

#(ly:set-option 'eps-box-padding 3.000000)



\paper {
  #(set-paper-size '(cons (* 597.508 pt) (* 845.047 pt)))
  indent = 0\mm
  line-width = 160\mm
  % offset the left padding, also add 1mm as lilypond creates cropped
  % images with a little space on the right
  line-width = #(- line-width (* mm  3.000000) (* mm 1))
}

\layout {
  
}




% ****************************************************************
% ly snippet:
% ****************************************************************
\sourcefilename "/lilypond-2.26.0/input/regression/polymetric-time-event.ly"
\sourcefileline 0
\version "2.25.32"

\header {
  texidoc = "The @code{\\polymetric \\time} command sets staff-specific timing
properties.  The @code{\\polymetric \\default} command unsets them.

The staff named ``Test'' should change to 8/8 time in the second measure and
revert to common time in the third.  The other staves should remain in common
time."
}

#(ly:set-option 'warning-as-error #t)

\score {
  \layout {}
  \midi {}
  \fixed c' <<
    \time 4/4
    \new Staff = "A" {
      \repeat unfold 3 {
        \repeat unfold 8 f8
      }
    }
    \new Staff = "B" \with { instrumentName = "Test" } {
      \repeat unfold 8 f8

      \context Staff \polymetric \time 8/8

      \contextPropertyCheck Staff.beamExceptions #'()
      \contextPropertyCheck Staff.beatBase #1/8
      \contextPropertyCheck Staff.beatStructure #'(3 3 2)
      \contextPropertyCheck Staff.measureLength \default
      \contextPropertyCheck Staff.meterScalingFactor 1
      \contextPropertyCheck Staff.submeasureStructure #'(8)
      \contextPropertyCheck Staff.timeSignature 8/8

      \repeat unfold 8 f8

      \context Staff \polymetric \default
      %% A user would be well-advised to add \time 4/4 here, but omitting it
      %% probably makes a more sensitive test.

      \contextPropertyCheck Staff.beamExceptions \default
      \contextPropertyCheck Staff.beatBase \default
      \contextPropertyCheck Staff.beatStructure \default
      \contextPropertyCheck Staff.measureLength \default
      \contextPropertyCheck Staff.meterScalingFactor \default
      \contextPropertyCheck Staff.submeasureStructure \default
      \contextPropertyCheck Staff.timeSignature \default

      \repeat unfold 8 f8
    }
    \new Staff = "C" {
      \repeat unfold 3 {
        \repeat unfold 8 f8
      }
    }
  >>
}



% ****************************************************************
% end ly snippet
% ****************************************************************
