RE: Argument transfer?

2005-07-16 Thread Fairchild
ly your message. - Bruce -Original Message- From: Nicolas Sceaux [mailto:[EMAIL PROTECTED] Sent: Monday, July 11, 2005 10:15 AM To: Fairchild Cc: [EMAIL PROTECTED]; lilypond-user@gnu.org Subject: Re: Argument transfer? "Fairchild" <[EMAIL PROTEC

Re: Argument transfer?

2005-07-11 Thread Nicolas Sceaux
"Fairchild" <[EMAIL PROTECTED]> writes: > 3) I don't understand some elements, and hope for enlightenment about: >a) def-music-function (location MagArg) (number?) This is the way to define new LilyPond "keywords", eg functions manipulating their argument in order to build some music ex

Re: LSR (was: Argument transfer?)

2005-07-07 Thread Erik Sandberg
On Thursday 07 July 2005 07.33, Graham Percival wrote: > On 5-Jul-05, at 10:23 AM, Sebastiano Vigna wrote: > > I don't know why it's not easy to search--be more specific. > > I find the searching easy. If you want more powerful searches, then > you can > download the snippets and use grep. :) Wo

LSR (was: Argument transfer?)

2005-07-06 Thread Graham Percival
On 5-Jul-05, at 10:23 AM, Sebastiano Vigna wrote: On Tue, 2005-07-05 at 11:34 -0500, Fairchild wrote: Why not incorporate LSR into the manual or Tips and Tricks? That's planned. There is some issue still in passing from 2.4 from 2.6. I never had any answer to my question--whether the stuff

RE: Argument transfer?

2005-07-05 Thread Sebastiano Vigna
On Tue, 2005-07-05 at 11:34 -0500, Fairchild wrote: > Haven't used LSR much, but initial impression is that it good for browsing > but not reliable/maintained: see 'Caesura ("railtracks") with fermata' and > 'Changing the appearance of a slur from solid to dotted or dashed'. Haven't > noted any \v

RE: Argument transfer?

2005-07-05 Thread Fairchild
-Original Message- From: Erik Sandberg [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 05, 2005 4:47 AM To: Fairchild Cc: 'Nicolas Sceaux'; [EMAIL PROTECTED]; lilypond-user@gnu.org Subject: Re: Argument transfer? On Tuesday 05 July 2005 01.39, Fairchild wrote: > About a month ago I

Re: Argument transfer?

2005-07-05 Thread Erik Sandberg
On Tuesday 05 July 2005 01.39, Fairchild wrote: > About a month ago I started this thread with the question: " [I]s there a > way to pass a parameter into a define from within \score?" Several of you > responded with answers ranging from "impossible" to "certainly". Actually > I was searching for

RE: Argument transfer?

2005-07-04 Thread Fairchild
About a month ago I started this thread with the question: " [I]s there a way to pass a parameter into a define from within \score?" Several of you responded with answers ranging from "impossible" to "certainly". Actually I was searching for a way to invoke the define with an argument, massage th

Re: Argument transfer?

2005-06-07 Thread Nicolas Sceaux
Nicolas Sceaux <[EMAIL PROTECTED]> writes: > I would like to see a real example where a pre processor is a win over > using LilyPond's built-in extensibility capabilities, which many seem > to underestimate. To be more precise about how extensible LilyPond is, I'll show an example of a file I'm w

Re: Argument transfer?

2005-06-07 Thread Nicolas Sceaux
Erik Sandberg <[EMAIL PROTECTED]> writes: > On Monday 06 June 2005 20.02, Fairchild wrote: >> Eric, et. al. - >> >> Thanks for the response, even though it hasn't led anywhere. >> >> Let's try the question a couple of other ways. >> >> Can Scheme code be used within a \score block? >> >> Can a var

Re: Argument transfer?

2005-06-07 Thread Mats Bengtsson
If you want parameterized macros in your scores, I would recommend to use Scheme functions. You can find several examples in the mailing list archives and in the documentation. /Mats Erik Sandberg wrote: On Monday 06 June 2005 00.17, Fairchild wrote: This code is effective:

Re: Argument transfer?

2005-06-06 Thread Erik Sandberg
On Monday 06 June 2005 20.02, Fairchild wrote: > Eric, et. al. - > > Thanks for the response, even though it hasn't led anywhere. > > Let's try the question a couple of other ways. > > Can Scheme code be used within a \score block? > > Can a variable, defined in the ly file, be reassigned a new val

RE: Argument transfer?

2005-06-06 Thread Thies Albrecht
Hi Bruce! > Can Scheme code be used within a \score block? Take a look at the description of new features in Lily 2.4.X. You can find it here: http://lilypond.org/doc/v2.4/Documentation/topdocs/out-www/NEWS.html The section beginning with "LilyPond expressions can be embedded into Scheme..." migh

RE: Argument transfer?

2005-06-06 Thread Fairchild
e no, do I have a legitimate feature request? - Bruce -Original Message- From: Erik Sandberg [mailto:[EMAIL PROTECTED] Sent: Monday, June 06, 2005 10:54 AM To: lilypond-user@gnu.org Cc: Fairchild Subject: Re: Argument transfer? On Monday 06 June 2005 00.17,

Re: Argument transfer?

2005-06-06 Thread Erik Sandberg
On Monday 06 June 2005 00.17, Fairchild wrote: > This code is effective: > > \version "2.4.3" > Mag = #3 > BigOn = \override NoteHead #'font-size = \Mag > \score {\relative c'' { > c c c c > \BigOn > c c c c > }} > > > This shows what I'd like, but

Argument transfer?

2005-06-05 Thread Fairchild
Title: Argument transfer? This code is effective: \version "2.4.3" Mag = #3 BigOnĀ  = \override NoteHead #'font-size = \Mag \score {\relative c'' { c c c c \BigOn c c c c }} This shows what I&#x