Re: \tiny font in define-markup-function applied to list

2008-01-16 Thread Mats Bengtsson
Since you want it to apply to a horizontal line of markups, you have to use the #:line markup command: #(define-markup-command (mm layout props notetype beats) (string? string?) (interpret-markup layout props (markup #:tiny #:line (( #:raise 0.4 #:note notetype 1 = beats ) )) )) /Mats

Re: \tiny font in define-markup-function applied to list

2008-01-16 Thread Paul Scott
Mats Bengtsson wrote: Since you want it to apply to a horizontal line of markups, you have to use the #:line markup command: That works for me! Thanks! The documentation seems to imply that ( in Scheme is equivalent to { in Lily for markup. I can use \tiny{ ... } in Lily but not #:tiny{ in

Re: \tiny font in define-markup-function applied to list

2008-01-16 Thread Nicolas Sceaux
Le 16 janv. 08 à 19:45, Paul Scott a écrit : Mats Bengtsson wrote: Since you want it to apply to a horizontal line of markups, you have to use the #:line markup command: That works for me! Thanks! The documentation seems to imply that ( in Scheme is equivalent to { in Lily for markup.

\tiny font in define-markup-function applied to list

2008-01-15 Thread Paul Scott
Can anyone tell me how to apply \tiny to a list of text pieces in define-markup-function or why the following: #(define-markup-command (mm layout props notetype beats) (string? string?) (interpret-markup layout props (markup #:tiny (list ( #:raise 0.4 (#:note notetype 1) = beats ) ) )))