> >> F = ^\markup { \fontsize #-3 \musicglyph #"scripts.flageolet" }
> >
> > Thanks. However, this is no longer an `articulation' because of
> > the `^'.
> >
> > Han-Wen?
>
> \tweak
Thanks! I now have the solution -- this is something which should
probably be added to the manual because Joe User probably won't find
it...
Werner
======================================================================
% Here is some Scheme code to define a music expression which
% behaves like an articulation, and which modifies the grob
% associated with it.
%
% The example below defines \F which is the same as \flageolet
% but with a smaller flageolet glyph.
F = #(let ((m (make-music 'ArticulationEvent
'articulation-type "flageolet")))
(set! (ly:music-property m 'tweaks)
(acons 'font-size -3
(ly:music-property m 'tweaks)))
m)
\relative c'' {
c4^\F c4_\F
}
_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user