Isn't the problem that the part combiner puts the 8th rest in the unison voice and the quarter notes in the split voices, so the two ends of the triplet ends
up in two separate voices, which LilyPond cannot handle.

An ugly workaround is to move the tuplet engraver from the Voice context
to the Staff context:

\layout{
 \context{
   \Voice
   \remove Tuplet_engraver
 }
 \context{
   \Staff
   \consists Tuplet_engraver
 }
}


   /Mats

Ole Schmidt wrote:
Dear All,

I were asking a few days ago if there is something wrong with my code in the snippet below?
The triplets are not displayed correctly.
(See attached pdf)

best

ole


------------------------------------------------------------------------


%%%%%%%%%%%%%%%%%%%%%%%%%
\new Staff  {

\set Staff.printPartCombineTexts = ##f
\time 6/4
\clef "G_8"
\partcombine
\relative c' {     \override TupletBracket #'direction = #up
r4 \times 2/3 { r8 <a e'~>4 } <a e'>2 \times 2/3 { r8 <a e'>4 } <a~ e'~>4 |
}

\relative c' { r1 r4 r8 es,,~ | }
}

\version "2.11.36"
%%%%%%%%%%%%%%%%%%%%%%%%


------------------------------------------------------------------------

_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user

--
=============================================
        Mats Bengtsson
        Signal Processing
        Signals, Sensors and Systems
        Royal Institute of Technology
        SE-100 44  STOCKHOLM
        Sweden
        Phone: (+46) 8 790 8463                         
       Fax:   (+46) 8 790 7260
        Email: [EMAIL PROTECTED]
        WWW: http://www.s3.kth.se/~mabe
=============================================



_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to