Hi Henrik,

the problem is to move apart the two consecutive "\time n/m {}" statements,
so that the overrides only affect one set of tuplets.

See two examples below. The first one reports a "warning: ignoring too many
clashing note columns" - but typesetting is optimal IMO, second one compiles
without warning but adds space between the time-signature and the first note
due to the added skip. Unfortunately s1*0 won't do the job!

Markus

%%% Begin Snippet
\version "2.9.14"

\score {
  <<
    \new Staff {

      \relative c'' {
        \voiceOne
        <<
          <<
            { \times 2/3 { c8*4/5 c c }
              c4*4/5 c c c } \\
            { \hideNotes
              \once \override TupletBracket #'direction = #UP
              \once \override TupletBracket #'padding = #4
              \times 4/5 { c8*2/3 c c c4 c c c } \unHideNotes }
          >>

          \new Voice="nather" {
            \voiceTwo
            a4 a a a
          }
        >>
      }
    }
  >>
}

\score {
  <<
    \new Staff {

      \relative c'' {
        \voiceOne
        <<
          {
            \once \override TupletBracket #'padding = #3
            \times 4/5 {
              s128
              \times 2/3 {
                c8 c c
              }
              c4 c c c4*31/32
            }
          }
          \new Voice="nather" {
            \voiceTwo
            s128*4/5
            a4 a a a4*39/40
          }
        >>
      }
    }
  >>
}
%%% End Snippet








_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to