lilypond-user
[Top][All Lists]
Advanced

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

Re: not too bad for a beginner ... but i need help


From: Jan Nieuwenhuizen
Subject: Re: not too bad for a beginner ... but i need help
Date: 10 Oct 2001 10:35:17 +0200

David Pirotte <address@hidden> writes:

> > > so, i can i globally ask to reduce dynamic font size?
> > 
> > Of course:
> >
> >       DynamicText \override #'font-relative-size = #-1
> 
> well, i tried, but it does the work only for those inserted following the
> 'normal syntax':      \p      \ppp ...
> 
> but in my case, i have
>
>       #(define ppp '((dynamic) "ppp"))
> 
> in which case it does not 'listen' to the translator requests to
> reduce dynamic font

No, because using this scheme markup text, the specifier `dynamic'
is an abbreviation for

   (dynamic . ((font-family . dynamic) (font-relative-size . 0)))

as specified in scm/font.scm

So, you should do:

   #(define dynamic-1 '((font-family . dynamic) (font-relative-size . -1)))
   #(define ppp `((,dynamic-1) "ppp"))


See also:

    
http://lilypond.org/development/Documentation/user/out-www/lilypond/Text-markup.html

Greetings,

Jan.

-- 
Jan Nieuwenhuizen <address@hidden> | GNU LilyPond - The music typesetter
http://www.xs4all.nl/~jantien       | http://www.lilypond.org




reply via email to

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