On 7/29/06, Trevor Bača <[EMAIL PROTECTED]> wrote:
Hi,

Is is possible to draw a 64th note with only 2 flags?

As it turns out, the multiplication operator can give you a 64th note
with only 2 flags.

%%% WORKS %%%

\version "2.9.13"

\new Staff {
  \set Score.autoBeaming = ##f
  c'16 * 1/4 % effectively a 64th note but with only two flags
  c'64
  c'64
  c'64
}

%%% END %%%


So the multiplication operator is definitely a workaround.

Still, can anyone shed some light on using Stem #'duration-log?



I figured the
duration-log attribute of the Stem engraver would do like this.

%%% DOESN'T WORK %%%

\version "2.9.13"

\new Staff {
   \set Score.autoBeaming = ##f
   \override Stem #'duration-log = #2
   c'64
   c'32
   c'16
   c'8
   c'4
}

%%% END %%%

But the setting does nothing.

What am I missing?


--
Trevor Bača
[EMAIL PROTECTED]
... like the dew, or like lightning ...
_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to