2010/6/16 Jan A. Shullenberger <[email protected]>:

> I am a neophyte Lilypond user. I understand how to use the TWEAK
> command to show a chord with 1 LARGE note and 1 SMALL note.
> How do I show 1 LARGE whole note with a SMALL quarter note + 2 eighth
> notes + 1 half note?

Hi!

You can no longer use a chord construct if the rhythm is different.
You need to use a polyphonic construction, with Voices :
http://lilypond.org/doc/v2.13/Documentation/learning/i_0027m-hearing-voices.html
http://lilypond.org/doc/v2.13/Documentation/notation/multiple-voices


  <<
    {
      %% LARGE (normal) size
      c1
    }
    \new Voice {
      %% SMALL note size
      \set fontSize = #-3
      \override Stem #'length-fraction = #(magstep -3)
      e4 f8 g a2
    }
  >>


Cheers,
Xavier

--
Xavier Scheuer <[email protected]>

_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user
  • Tweak Jan A . Shullenberger
    • Re: Tweak Kieren MacMillan
    • Re: Tweak Xavier Scheuer

Reply via email to