lilypond-user
[Top][All Lists]
Advanced

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

Re: partcombine not fully displaying triplets


From: Mats Bengtsson
Subject: Re: partcombine not fully displaying triplets
Date: Wed, 16 Jan 2008 09:52:14 +0100
User-agent: Thunderbird 2.0.0.5 (X11/20070716)

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
address@hidden
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: address@hidden
        WWW: http://www.s3.kth.se/~mabe
=============================================





reply via email to

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