alberto,

On May 6, 2008, at 6:48 PM, Alberto Simões wrote:
I would like to mimic a score I have, where there are two voices in the
same score, but the note is used for both (instead of replicating it).

I am using this code:

                << { c8[ c'(-1 g c g c]) } \\ { c,2. } >>

And lilypond renders to notes for the first C. There is a common notation where the dotted minim is drawn with the beam down, and another beam up that is together with the other notes.

Is this possible?

try:

<<
        {
        \override Staff.NoteCollision #'merge-differently-headed = ##t
        c8[ c'(-1 g c g c])
        } \\
        { c,2. }
>>

found here:
http://lilypond.org/doc/v2.11/Documentation/user/lilypond/Collision-resolution#Collision-resolution

regards,
sb

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

Reply via email to