lilypond-user
[Top][All Lists]
Advanced

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

Re: Tweak


From: Xavier Scheuer
Subject: Re: Tweak
Date: Wed, 16 Jun 2010 14:17:51 +0200

2010/6/16 Jan A. Shullenberger <address@hidden>:

> 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 <address@hidden>



reply via email to

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