lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: More on colliding tuplet brackets.


From: Markus Schneider
Subject: Re: More on colliding tuplet brackets.
Date: Fri, 11 Aug 2006 16:17:07 +0200

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










reply via email to

[Prev in Thread] Current Thread [Next in Thread]