AW: Custom Markup Command

2019-09-18 Thread Aron Hanowski
Ursprüngliche Nachricht- > Von: Leo Correia de Verdier > Gesendet: Mittwoch, 18. September 2019 13:22 > An: sir.teddy.the.fi...@gmail.com > Cc: lilypond-user > Betreff: Re: Custom Markup Command > > You know there is a better way of writing chords, right? > >

Re: Custom Markup Command

2019-09-18 Thread Leo Correia de Verdier
de #'(font-name . "Georgia Bold") #text } #})) chord = ^\markup \formatchord \etc \relative c' { c4 \chord "Am" d e f } > 18 sep. 2019 kl. 12:39 skrev > : > > Hi all, > I’m trying to create a custom markup command to display tex

Custom Markup Command

2019-09-18 Thread sir.teddy.the.first
Hi all, I'm trying to create a custom markup command to display text (in my case a chord name, but it could be any text) over a note. This is what I have so far: %% \version "2.19.83" #(define-markup-command (chord layout props te

Re: Trying to create a custom markup command

2007-07-13 Thread Tao Cumplido
Anthony S. Bismonte" <[EMAIL PROTECTED]> An: "LilyPond User Mailing List" Betreff: Trying to create a custom markup command > I liked the idea of a segue so much, that I decided that I should write a > custom markup command for it: > > #(define-mar

Re: Trying to create a custom markup command

2007-07-12 Thread Valentin Villenave
2007/7/13, Romel Anthony S. Bismonte <[EMAIL PROTECTED]>: I'll bother some other list about how to make it work in IE. ^_^ Yep; I bet MS guys will be thankful if you send them a patch :) Greetings, Valentin ___ lilypond-user mailing list lilypond-

Re: Trying to create a custom markup command

2007-07-12 Thread Romel Anthony S. Bismonte
Ah, all right! Now I'm pointed in the right direction. Thanks, again, guys. Maybe I shouldn't code or read the manual when my mind is telling me that I should sleep. It sure is clear what I did wrong now that I see my code in the light of day! But hey, a bug, right? That's pretty exciting; I've

RE: Trying to create a custom markup command

2007-07-12 Thread Carl D. Sorensen
Valentin wrote: > What has to be done? How do you define the (string?) start? Oops -- my bad. I misread the error messages. All that needs to happen is to enclose the multiple notes in braces, to make a single music expression. Multiple notes outside of braces make multiple music expressions

RE: Trying to create a custom markup command

2007-07-12 Thread Carl D. Sorensen
Valentin wrote: > -Original Message- > From: Valentin Villenave [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 12, 2007 12:51 PM > > I was about to add it to the LSR when I realized it only > works when your score contains only *one* note... Try adding > a few more notes before the

Re: Trying to create a custom markup command

2007-07-12 Thread Graham Percival
Romel Anthony S. Bismonte wrote: By the way, I am interested in contributing to the documentation. The main instructions are here: http://lilypond.org/web/devel/participating/documentation-adding If you don't have any ideas for specific improvements, I have a list of improvements waiting for

Re: Trying to create a custom markup command

2007-07-12 Thread Valentin Villenave
2007/7/12, Carl D. Sorensen <[EMAIL PROTECTED]>: I hope this has been helpful. I was about to add it to the LSR when I realized it only works when your score contains only *one* note... Try adding a few more notes before the c'1, and you'll see it doesn't work any longer. What has to be done?

RE: Trying to create a custom markup command

2007-07-12 Thread Carl D. Sorensen
Romel wrote: > I liked the idea of a segue so much, that I decided that I > should write a custom markup command for it: > > #(define-markup-command (segue layout props tosong) > (string?) > (interpret-markup layout props > (markup #:small #:column "

Re: Trying to create a custom markup command

2007-07-12 Thread Romel Anthony S. Bismonte
c1_\segue #"Something Else" Only `c1-\segue' works, IIRC. Writing something which works with `_' and `^' is a bit more difficult; however, I've added an example some time ago to the docs. Werner I tried `c1-\segue #"Something Else"'. This didn't work, either. The log file says th

Re: Trying to create a custom markup command

2007-07-12 Thread Werner LEMBERG
> c1_\segue #"Something Else" Only `c1-\segue' works, IIRC. Writing something which works with `_' and `^' is a bit more difficult; however, I've added an example some time ago to the docs. Werner ___ lilypond-user mailing list lilypond-use

Trying to create a custom markup command

2007-07-12 Thread Romel Anthony S. Bismonte
I liked the idea of a segue so much, that I decided that I should write a custom markup command for it: #(define-markup-command (segue layout props tosong) (string?) (interpret-markup layout props (markup #:small #:column "segue to" #:italic tosong) ) ) The u

Re: help with custom markup command?

2006-07-24 Thread Nicolas Sceaux
"Monk Panteleimon" <[EMAIL PROTECTED]> writes: > \markup \pad-markup #3 \large{ \with-color #(x11-color 'firebrick) \italic { > \hspace #9 Deacon:} \override #'(line-width . 60) \justify{ What the deacon > says. } } > > I want to condense this into a command so that {what the deacon says} > consti

Re: help with custom markup command?

2006-07-21 Thread Graham Percival
Please keep lilypond questions on the mailist. Monk Panteleimon wrote: Yes, I've been looking at the 2.9 docs, and I see that they are quite clearly written, but it's still pretty hard for me, being a non-programmer. Maybe I can submit some more specific questions. I think that everything ca

FW: help with custom markup command?

2006-07-20 Thread Monk Panteleimon
Yes, I've been looking at the 2.9 docs, and I see that they are quite clearly written, but it's still pretty hard for me, being a non-programmer. Maybe I can submit some more specific questions. Let's say in the "smallcaps" example in section 12.4.3 we wanted to employ the functions represented

Re: help with custom markup command?

2006-07-20 Thread Graham Percival
Monk Panteleimon wrote: I have been ambitiously reading the section on "programmer interfaces" and the scheme tutorial in an attempt to make a special markup command. I'm not getting very far, and I thought someone more clever and experienced might do better. I also thought someone clever and exp

help with custom markup command?

2006-07-20 Thread Monk Panteleimon
Hello. I have been ambitiously reading the section on "programmer interfaces" and the scheme tutorial in an attempt to make a special markup command. I'm not getting very far, and I thought someone more clever and experienced might do better. I also thought someone clever and experienced might qui