lilypond-user
[Top][All Lists]
Advanced

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

Re: New


From: Malte Meyn
Subject: Re: New
Date: Tue, 18 Sep 2018 13:25:42 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.0



Am 18.09.18 um 13:07 schrieb Bernhard Kleine:
I would like to render the 'molto' in the example from the documentation in italics. I have looked into the documentation to "New <beschriftungszeichen>" but to no avail.

moltoF = #(make-dynamic-script
             (markup #:normal-text "molto"
                     #:dynamic "f"))

Just add #:italic after #:normal-text. You can also use LilyPond markup syntax instead of Scheme markup syntax:


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\version "2.19.82"

moltoF = #(make-dynamic-script (markup #:normal-text #:italic "molto" #:dynamic "f"))

piuFmarkup = \markup { \normal-text \italic "più" \dynamic "f" }
piuF = #(make-dynamic-script piuFmarkup)

Fpossibile = #(make-dynamic-script #{ \markup { \dynamic "f" \normal-text \italic "possibile" } #})

\relative c' {
  <d e>16 <d e>
  <d e>2..\moltoF
  <d e>16 <d e>
  <d e>2..\piuF
  <d e>16 <d e>
  <d e>2..\Fpossibile
}





reply via email to

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