David Kastrup writes:
> Caio Giovaneti de Barros writes:
>
>> Hello!
>>
>> I'm trying to build a function that creates a circled text of my
>> choice using \markup and a bit of Scheme. So far what I have is:
>>
>> circled = #(define-music-function (parser location txt) (string?)
>>
>> #{ \markup
Caio Giovaneti de Barros writes:
> Hello!
>
> I'm trying to build a function that creates a circled text of my
> choice using \markup and a bit of Scheme. So far what I have is:
>
> circled = #(define-music-function (parser location txt) (string?)
>
> #{ \markup { \circle #txt } #})
>
>
> \relati
__
> lilypond-user mailing list
> [hidden email] <http:///user/SendEmail.jtp?type=node&node=178878&i=0>
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
>
> --
> If you reply to this email, your message will be added to the d
Hello!
I'm trying to build a function that creates a circled text of my choice
using \markup and a bit of Scheme. So far what I have is:
circled = #(define-music-function (parser location txt) (string?)
#{ \markup { \circle #txt } #})
\relative c' { c \circled #"1" }
But when I run it wi