Hi,

I posted before about time signatures and/or key changes repeated at the end of the previous line and was shown that it works correctly.

I finally saw the problem that occasionally effects my normal code structure.

I always separate notes and time and dynamics to be able to use all or parts of them more than once.

The following MWE shows the rare example of when this separation causes trouble.

\version "2.25.24"

dyn = { s1*4 s2\f\< s4. s8\! }
music = <<
  {
    \fixed c' {
      \key g \major
      g4 4 4 4 a4 4 4 4 \repeat unfold 1 { b4 4 4 4 }
      \repeat unfold 8 { 8 }
      8 8 8 8 8 8 4 8 % \f\< 8 8 8 8 8 4\!
      \break
      \time 8/8
      \key fis \major
      a1 1 \bar "|."
    }
  } \\
  { \dyn }
>>
\score{ \music }

I have thousands of lines of code using this separation of time and notes and dynamics.

Thank you for any ideas,

Paul




Reply via email to