Am 27.12.2017 um 20:57 schrieb Johannes Roeßler:

So I found this: (Its scheme? right?)
ep = #(make-dynamic-script (markup #:dynamic "p" ))
- but I have no idea how to integrate the size here.

You can use #:huge and friends or #:fontsize as seen below. Or you switch to “non-scheme lilypond markup mode”:

\version "2.19.80"

ep = #(make-dynamic-script
       #{
         \markup \huge "p"
       #})

eep = #(make-dynamic-script
        (markup
         #:huge "p"))

eeep = #(make-dynamic-script
         (markup
          #:fontsize 5 "p"))

{ r\p r\ep r\eep r\eeep }

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to