Tweaking in scheme

2015-06-29 Thread Peter Gentry
Tweaking in scheme The heart of the scheme procedure I'm trying is #(define (instrumentrange music instrument ) ( ly:music? string? ) ; extract the various portions of the music object (let ((es (ly:music-property music 'elements)) (e (ly:music-property musi

Re: Tweaking in scheme

2015-06-29 Thread Thomas Morley
2015-06-29 12:54 GMT+02:00 Peter Gentry : > > Tweaking in scheme > > The heart of the scheme procedure I'm trying is > > #(define (instrumentrange music instrument ) >( ly:music? string? ) > ; extract the various portions of the music object > (let ((es (l

RE: Tweaking in scheme

2015-06-29 Thread Peter Gentry
>-Original Message- >From: Thomas Morley [mailto:thomasmorle...@gmail.com] >Sent: Monday, June 29, 2015 12:10 PM >To: Peter Gentry >Cc: lilypond-user >Subject: Re: Tweaking in scheme > >2015-06-29 12:54 GMT+02:00 Peter Gentry : >> >> Tweaking in

Re: Tweaking in scheme

2015-06-29 Thread David Kastrup
Thomas Morley writes: > How about: > > \version "2.19.21" > > %% regard output of: > \displayMusic > { \tweak style #'harmonic a'1 } > > tweakI = > #(define-music-function (parser location music)(ly:music?) > (ly:music-set-property! music 'tweaks > (acons 'style 'harmonic > (acons 'co

Re: Tweaking in scheme

2015-06-29 Thread Urs Liska
Am 29.06.2015 um 13:40 schrieb David Kastrup: > As 2.19.22 is now available for download, let me smugly suggest: > > \version "2.19.22" > tweakIII = > #(define-music-function (music) (ly:music?) > (tweak 'color red > (tweak 'style 'harmonic music))) As I've expressed earlier somewhere I t

Re: Tweaking in scheme

2015-06-29 Thread Trevor Daniels
David Kastrup wrote Monday, June 29, 2015 12:40 PM > As 2.19.22 is now available for download, let me smugly suggest: > > \version "2.19.22" > tweakIII = > #(define-music-function (music) (ly:music?) > (tweak 'color red >(tweak 'style 'harmonic music))) > > However, like all of the previou

Re: Tweaking in scheme

2015-06-29 Thread Kieren MacMillan
Hi all, On Jun 29, 2015, at 7:40 AM, David Kastrup wrote: > As 2.19.22 is now available for download, let me smugly suggest: > \version "2.19.22" > tweakIII = > #(define-music-function (music) (ly:music?) > (tweak 'color red >(tweak 'style 'harmonic music))) BRAVO! This is wonderful. Kudos

Re: Tweaking in scheme

2015-06-29 Thread Paul Morris
> On Jun 29, 2015, at 11:43 AM, Kieren MacMillan > wrote: > > BRAVO! > This is wonderful. > > Kudos and thanks. +1 This is really nice! LilyPond just keeps getting better. -Paul ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gn

Re: Tweaking in scheme

2015-06-30 Thread Peter Gentry
>-Original Message- >From: David Kastrup [mailto:d...@gnu.org] >Sent: Monday, June 29, 2015 3:13 PM >To: Peter Gentry >Cc: lilypond-user@gnu.org >Subject: [SPAM] Re: [SPAM] Re: Tweaking in scheme > >David Kastrup writes: > >> "Peter Gentry&

RE: [SPAM] Re: Tweaking in scheme

2015-06-29 Thread Peter Gentry
>-Original Message- >From: David Kastrup [mailto:d...@gnu.org] >Sent: Monday, June 29, 2015 12:40 PM >To: Thomas Morley >Cc: Peter Gentry; lilypond-user >Subject: [SPAM] Re: Tweaking in scheme > >Thomas Morley writes: > >> How about: >> >>

Re: [SPAM] Re: Tweaking in scheme

2015-06-29 Thread David Kastrup
"Peter Gentry" writes: >>-Original Message- >>From: David Kastrup [mailto:d...@gnu.org] >>One can also try to do this kind of iteration oneself in order >>to only use the less invasive tweaks and get the color covered: >> >>\version "2.19.22" >>tweakIV = >>#(define-music-function (musi

Re: [SPAM] Re: Tweaking in scheme

2015-06-29 Thread David Kastrup
David Kastrup writes: > "Peter Gentry" writes: > >>>-Original Message- >>>From: David Kastrup [mailto:d...@gnu.org] > >>>One can also try to do this kind of iteration oneself in order >>>to only use the less invasive tweaks and get the color covered: >>> >>>\version "2.19.22" >>>tweakI