Re: Defining a markup text using Scheme

2015-07-20 Thread David Kastrup
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

Re: Defining a markup text using Scheme

2015-07-20 Thread David Kastrup
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

Re: Defining a markup text using Scheme

2015-07-20 Thread tisimst
__ > 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

Defining a markup text using Scheme

2015-07-20 Thread Caio Giovaneti de Barros
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