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
}
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user