something like scorch for lilypond?

2010-09-20 Thread Stefan Thomas
Dear community, can be done something similar to scorch-plugin by sibelius with lilypond? Perhaps in combination with lilypond-book and the beamer-class of latex? ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/l

Re: adding 'HarmonicEvent?

2010-09-20 Thread Marc Hohl
Éditions IN NOMINE schrieb: Naerly the same, that works perfectly (welle I'm quite enthousiastic beacause it's my first scheme function !) : makeHarmonic = #(define-music-function (parser location note)(ly:music?) "force noteHead to harmonic" (let ((result-note (ly:music-deep-copy note)))

Re: adding 'HarmonicEvent?

2010-09-20 Thread Marc Hohl
David Kastrup schrieb: Marc Hohl writes: Hello all, I try to write a function that changes its argument to harmonics, so \makeHarmonic c4 should have the same effect as 4 I read Notation Reference 6.3.4, but the 'HarmonicEvent is deep inside the 'elements list, so I think the only way to

Re: Request for changes in manuals

2010-09-20 Thread James Bailey
On Sep 21, 2010, at 12:17 AM, mark damerell wrote: > I am using Version 2.12.3. > > In a previous post I asked about printing bar numbers in non-standard > places. I was told: > > 1) \once \override Score.BarNumber #'break-visibility = #all-visible > > I believe that the manual fails to say

Request for changes in manuals

2010-09-20 Thread mark damerell
I am using Version 2.12.3. In a previous post I asked about printing bar numbers in non-standard places. I was told: 1) \once \override Score.BarNumber #'break-visibility = #all-visible I believe that the manual fails to say that this command only works if you put it in exactly the right place

Re: Question re: CadenzaOn

2010-09-20 Thread Xavier Scheuer
On 20/09/2010, Joshua Armenta wrote: > > That fixed it, thanks! > Josh Armenta You're welcome! Glad to see it was what you wanted. Cheers, Xavier -- Xavier Scheuer ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/lis

Re: How to include a file/definition temporarily?

2010-09-20 Thread David Kastrup
Carl Sorensen writes: > On 9/20/10 3:54 AM, "David Kastrup" wrote: > >> Carl Sorensen writes: >> >>> This is a good thought as a temporary workaround. However, it won't work >>> as-is, because fretboard-table is a hash table. We'd need to define a >>> hash-table copy function: >>> >>> (defi

Re: separating music and guitar instructions

2010-09-20 Thread Patrick Schmidt
Am 20.09.2010 um 20:29 schrieb Vicente Solsona: On Mon, 20 Sep 2010 18:27:37 +0200, "Vicente Solsona" wrote: To sumarise: String numbers, harmonics and right hand fingerings *must* be defined inside a chord construct even if there is only a single note. you can attach finger numbers to s

Re: separating music and guitar instructions

2010-09-20 Thread Vicente Solsona
On Mon, 20 Sep 2010 18:27:37 +0200, "Vicente Solsona" wrote: To sumarise: String numbers, harmonics and right hand fingerings *must* be defined inside a chord construct even if there is only a single note. you can attach finger numbers to single notes: a-1 b-2 c-1-2-3-4 % etc but you

Re: How to include a file/definition temporarily?

2010-09-20 Thread Carl Sorensen
On 9/20/10 3:54 AM, "David Kastrup" wrote: > Carl Sorensen writes: > >> This is a good thought as a temporary workaround. However, it won't work >> as-is, because fretboard-table is a hash table. We'd need to define a >> hash-table copy function: >> >> (define (hash-table-copy my-table) >

Re: separating music and guitar instructions

2010-09-20 Thread Kaz Kylheku
On Mon, 20 Sep 2010 18:27:37 +0200, "Vicente Solsona" wrote: > To sumarise: > > String numbers, harmonics and right hand fingerings *must* be defined > inside a chord construct even if there is only a single note. > > you can attach finger numbers to single notes: > > a-1 b-2 c-1-2-3-4 %

Re: separating music and guitar instructions

2010-09-20 Thread Vicente Solsona
On Wed 15 Sep 2010, 22:40 Xavier Scheuer wrote: On 15 September 2010 19:53, Vicente Solsona wrote: > It probably has something to do with the fact that string numbers and > right hand fingers must be put inside a chord, but skips cannot, but > I'm stuck here. This limitation that string numbers

Re: adding 'HarmonicEvent?

2010-09-20 Thread Éditions IN NOMINE
Naerly the same, that works perfectly (welle I'm quite enthousiastic beacause it's my first scheme function !) : makeHarmonic = #(define-music-function (parser location note)(ly:music?) "force noteHead to harmonic" (let ((result-note (ly:music-deep-copy note))) (set! (ly:music-propert

Re: How to include a file/definition temporarily?

2010-09-20 Thread Patrick Schmidt
Am 20.09.2010 um 11:57 schrieb David Kastrup: Patrick Schmidt writes: For example I couldn't find "copy-list" anywhere in the manuals so I guess it is a self-defined function or a scheme function I haven't found, yet. My Scheme-foo is lousy. It is `list-copy'. Sorry for that! Some redund

Re: How to include a file/definition temporarily?

2010-09-20 Thread David Kastrup
Patrick Schmidt writes: > For example I couldn't find "copy-list" anywhere in the manuals so I > guess it is a self-defined function or a scheme function I haven't > found, yet. My Scheme-foo is lousy. It is `list-copy'. -- David Kastrup ___ lilyp

Re: How to include a file/definition temporarily?

2010-09-20 Thread David Kastrup
Carl Sorensen writes: > This is a good thought as a temporary workaround. However, it won't work > as-is, because fretboard-table is a hash table. We'd need to define a > hash-table copy function: > > (define (hash-table-copy my-table) > (let ((new-hash-table (make-hash-table 100))) > (ha

Re: How to include a file/definition temporarily?

2010-09-20 Thread Patrick Schmidt
Hi Carl and David Am 20.09.2010 um 11:29 schrieb Carl Sorensen: On 9/20/10 1:19 AM, "David Kastrup" wrote: Patrick Schmidt writes: Hi all, I have several files with definitions of guitar fret diagrams for various chord shapes (e.g. c-shape.ly, a-shape.ly, g-shape.ly, e- shape.ly and d-

Re: adding 'HarmonicEvent?

2010-09-20 Thread David Kastrup
Marc Hohl writes: > Hello all, > > I try to write a function that changes its argument to harmonics, > so > \makeHarmonic c4 > > should have the same effect as > 4 > > I read Notation Reference 6.3.4, but the 'HarmonicEvent is > deep inside the 'elements list, so I think the only way to get this

Re: How to include a file/definition temporarily?

2010-09-20 Thread Carl Sorensen
On 9/20/10 1:19 AM, "David Kastrup" wrote: > Patrick Schmidt writes: > >> Hi all, >> >> I have several files with definitions of guitar fret diagrams for >> various chord shapes (e.g. c-shape.ly, a-shape.ly, g-shape.ly, e- >> shape.ly and d-shape.ly). I can't include all of these files at t

Re: Help, please --- can not mode dot down .(

2010-09-20 Thread Patrick Schmidt
Am 20.09.2010 um 10:53 schrieb Dmytro O. Redchuk: On Sat 18 Sep 2010, 16:47 Patrick Schmidt wrote: It looks to me as if this strange behaviour is caused by the No, with no \voiceTwo lilypond produces wrong picture, too (dots can not be moved). Thank you, Patrick and Vicente, i've added thi

Re: separating music and guitar instructions

2010-09-20 Thread Dmytro O. Redchuk
On Wed 15 Sep 2010, 22:40 Xavier Scheuer wrote: > On 15 September 2010 19:53, Vicente Solsona wrote: > > It probably has something to do with the fact that string numbers and > > right hand fingers must be put inside a chord, but skips cannot, but > > I'm stuck here. > > This limitation that stri

Re: Chords with unequal durations

2010-09-20 Thread Dmytro O. Redchuk
On Mon 13 Sep 2010, 18:16 Trevor Daniels wrote: > As to the documentation bug, the documentation for 'ignore-collision > in the Internal Reference says > "If set, don’t do note collision resolution on this NoteColumn" > That seems clear enough, but the snippet > Suppressing warnings for clashing

Re: Help, please --- can not mode dot down .(

2010-09-20 Thread Dmytro O. Redchuk
On Sat 18 Sep 2010, 16:47 Patrick Schmidt wrote: > It looks to me as if this strange behaviour is caused by the No, with no \voiceTwo lilypond produces wrong picture, too (dots can not be moved). Thank you, Patrick and Vicente, i've added this as 1266: http://code.google.com/p/lilypond/issues/deta

adding 'HarmonicEvent?

2010-09-20 Thread Marc Hohl
Hello all, I try to write a function that changes its argument to harmonics, so \makeHarmonic c4 should have the same effect as 4 I read Notation Reference 6.3.4, but the 'HarmonicEvent is deep inside the 'elements list, so I think the only way to get this done is to read the full structure and

Re: best practices

2010-09-20 Thread Dmytro O. Redchuk
On Mon 20 Sep 2010, 10:08 David Kastrup wrote: > Anyway, if we have a sender knowing abbreviations, and a receiver _not_ > knowing them, they are not as much convenient for communication as for > establishing superiority. That was not about a (polite and convenient for all) way to answer emails in

Re: best practices

2010-09-20 Thread David Kastrup
"Dmytro O. Redchuk" writes: > On Sun 19 Sep 2010, 21:36 David Kastrup wrote: >> It is agreed-upon best practice _not_ to use those abbreviations on the >> general user list. > Regarding abbreviations -- they're convenient, anyway. If I have been able to look far, it is because I have been steppi

Re: best practices

2010-09-20 Thread Dmytro O. Redchuk
On Sun 19 Sep 2010, 21:36 David Kastrup wrote: > It is agreed-upon best practice _not_ to use those abbreviations on the > general user list. Regarding abbreviations -- they're convenient, anyway. -- Dmytro O. Redchuk Bug Squad Be careful! These are some commonly used abbreviations: •

Re: How to include a file/definition temporarily?

2010-09-20 Thread David Kastrup
Patrick Schmidt writes: > Hi all, > > I have several files with definitions of guitar fret diagrams for > various chord shapes (e.g. c-shape.ly, a-shape.ly, g-shape.ly, e- > shape.ly and d-shape.ly). I can't include all of these files at the > same time in the main file as quite a few chord alte