Updates:
        Cc: [email protected]
        Labels: spacing

Comment #4 on issue 3304 by [email protected]: Unequal spacing in odd n-tuplet with other simultaneous subdivisions
http://code.google.com/p/lilypond/issues/detail?id=3304

% David is right.  Here's an example from my vault:
% (actually, this is just one of a symptoms of a bigger spacing issue...)

\markup "naturally spaced music (ragged-right):"
\score {
  <<
    \new Staff \relative c'' {
      g'4 f8 e f e \times 2/3 { c d e }
      f e \times 2/3 { f e d } e d c b
    }
    \new Staff \relative c'' {
      g8 f f e d4 d8 g
      g g g e g4 a
    }
  >>
}

\markup "restricing line-width results in uneven triplet spacing:"
\score {
  <<
    \new Staff \relative c'' {
      g'4 f8 e f e \times 2/3 { c d e }
      f e \times 2/3 { f e d } e d c b
    }
    \new Staff \relative c'' {
      g8 f f e d4 d8 g
      g g g e g4 a
    }
  >>

  \layout {
    line-width = 110\mm
  }
}

\markup "using common-shortest-duration results in good triplets:"
\score {
  <<
    \new Staff \relative c'' {
      g'4 f8 e f e \times 2/3 { c d e }
      f e \times 2/3 { f e d } e d c b
    }
    \new Staff \relative c'' {
      g8 f f e d4 d8 g
      g g g e g4 a
    }
  >>

  \layout {
    \context {
      \Score
      \override SpacingSpanner
      #'common-shortest-duration = #(ly:make-moment 4 34)
    }
  }
}

Attachments:
        uneven triplets.png  13.6 KB

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

Reply via email to