Re: review of a Mutopia file (why TabStaff gives error here?)

2012-12-23 Thread Federico Bruni
Il 24/11/2012 03:34, Keith OHara ha scritto: You might not have seen that Nick posted a much nicer formatting for barre indications. http://lists.gnu.org/archive/html/lilypond-user/2012-11/msg00570.html It avoids taking apart LilyPond's internal data structures, which makes it better for

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-12-06 Thread Thomas Morley
2012/11/26 Nick Payne nick.pa...@internode.on.net: On 24/11/12 13:34, Keith OHara wrote: barre = #(define-music-function (parser location strg music) (number? ly:music?) #{ \set TabStaff.minimumFret = $strg \set TabStaff.restrainOpenStrings = ##t \once\override

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-11-28 Thread Thomas Morley
2012/11/28 Nick Payne nick.pa...@internode.on.net: On 28/11/12 09:35, Thomas Morley wrote: Although I can confirm your observation, I asked myself: How would I use a TextSpanner to span a repeat-unfold-expression with pure LilyPond-syntax? I couldn't find any reasonable method. The

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-11-28 Thread Nick Payne
On 29/11/12 12:45, Thomas Morley wrote: 2012/11/28 Nick Payne nick.pa...@internode.on.net: On 28/11/12 09:35, Thomas Morley wrote: Although I can confirm your observation, I asked myself: How would I use a TextSpanner to span a repeat-unfold-expression with pure LilyPond-syntax? I couldn't

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-11-28 Thread David Kastrup
Thomas Morley thomasmorle...@googlemail.com writes: Hi Nick, apart from the repeat-unfold-problem there's an additional one, due to the chord at the end of the TextSpanner. #(define (text-spanner-start-stop mus) (let ((elts (extract-typed-music mus 'rhythmic-event))) Exchange

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-11-27 Thread Nick Payne
On 27/11/12 11:52, David Kastrup wrote: #(define (text-spanner-start-stop mus) (let ((elts (extract-typed-music mus 'rhythmic-event))) (for-each (lambda (sel) (let ((m (sel elts))) (set! (ly:music-property m 'articulations) (cons (make-music

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-11-27 Thread Thomas Morley
2012/11/27 David Kastrup d...@gnu.org: Probably try something like #(define (text-spanner-start-stop mus) (let ((elts (extract-typed-music mus 'rhythmic-event))) (for-each (lambda (sel) (let ((m (sel elts))) (set! (ly:music-property m 'articulations)

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-11-27 Thread Thomas Morley
2012/11/27 Nick Payne nick.pa...@internode.on.net: On 27/11/12 11:52, David Kastrup wrote: #(define (text-spanner-start-stop mus) (let ((elts (extract-typed-music mus 'rhythmic-event))) (for-each (lambda (sel) (let ((m (sel elts))) (set!

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-11-27 Thread Nick Payne
On 28/11/12 09:35, Thomas Morley wrote: Although I can confirm your observation, I asked myself: How would I use a TextSpanner to span a repeat-unfold-expression with pure LilyPond-syntax? I couldn't find any reasonable method. The following doesn't work (ofcourse not): \relative c {

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-11-26 Thread Nick Payne
On 26/11/12 12:37, Keith OHara wrote: Nick Payne nick.payne at internode.on.net writes: On 24/11/12 13:34, Keith OHara wrote: \once\override TextSpanner #'to-barline = ##t \startTextSpan $music \stopTextSpan Why is lilypond thinking that the TextSpanner is breaking

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-11-26 Thread Thomas Morley
2012/11/26 Nick Payne nick.pa...@internode.on.net: On 26/11/12 12:37, Keith OHara wrote: Nick Payne nick.payne at internode.on.net writes: On 24/11/12 13:34, Keith OHara wrote: \once\override TextSpanner #'to-barline = ##t \startTextSpan $music \stopTextSpan

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-11-26 Thread David Kastrup
Thomas Morley thomasmorle...@googlemail.com writes: 2012/11/26 Nick Payne nick.pa...@internode.on.net: Thanks. I had a look at http://lsr.dsi.unimi.it/LSR/Item?id=857. However, even with a single sequence, in some situations it doesn't handle braces during the barre - e.g. if you try

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-11-25 Thread Federico Bruni
Il 24/11/2012 22:53, Nick Payne ha scritto: BTW, given that guitar right-hand fingering in a score is indicated by the letters p, i, m, and a, I think that the source is easier to read if you define P=\rightHandFinger #1 I=\rightHandFinger #2 M=\rightHandFinger #3 A=\rightHandFinger #4 rather

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-11-25 Thread Nick Payne
On 24/11/12 13:34, Keith OHara wrote: barre = #(define-music-function (parser location strg music) (number? ly:music?) #{ \set TabStaff.minimumFret = $strg \set TabStaff.restrainOpenStrings = ##t \once\override TextSpanner #'(bound-details left text) =

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-11-25 Thread Keith OHara
Nick Payne nick.payne at internode.on.net writes: On 24/11/12 13:34, Keith OHara wrote: \once\override TextSpanner #'to-barline = ##t \startTextSpan $music \stopTextSpan Why is lilypond thinking that the TextSpanner is breaking across staves when it isn't?

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-11-24 Thread Federico Bruni
Il 24/11/2012 03:34, Keith OHara ha scritto: You might not have seen that Nick posted a much nicer formatting for barre indications. http://lists.gnu.org/archive/html/lilypond-user/2012-11/msg00570.html It avoids taking apart LilyPond's internal data structures, which makes it better for

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-11-24 Thread David Kastrup
Federico Bruni fedel...@gmail.com writes: Il 24/11/2012 03:34, Keith OHara ha scritto: You might not have seen that Nick posted a much nicer formatting for barre indications. http://lists.gnu.org/archive/html/lilypond-user/2012-11/msg00570.html It avoids taking apart LilyPond's internal data

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-11-24 Thread Keith OHara
Federico Bruni fedelogy at gmail.com writes: Il 24/11/2012 03:34, Keith OHara ha scritto: Federico Bruni fedelogy at gmail.com writes: I've updated to 2.16 the following piece of Mutopia: http://www.mutopiaproject.org/cgibin/piece-info.cgi?id=636 Can anyone review it? I've also added

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-11-24 Thread Nick Payne
On 24/11/12 19:02, Federico Bruni wrote: Il 24/11/2012 03:34, Keith OHara ha scritto: Federico Bruni fedelogy at gmail.com writes: I've updated to 2.16 the following piece of Mutopia: http://www.mutopiaproject.org/cgibin/piece-info.cgi?id=636 Can anyone review it? I made one pass through,

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-11-23 Thread Keith OHara
Federico Bruni fedelogy at gmail.com writes: I've updated to 2.16 the following piece of Mutopia: http://www.mutopiaproject.org/cgibin/piece-info.cgi?id=636 Can anyone review it? I made one pass through, and made potential-corrections as I went. (attached) Hopefully you can use a 'diff'

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-11-23 Thread Keith E OHara
Federico Bruni fedelogy at gmail.com writes: I've updated to 2.16 the following piece of Mutopia: http://www.mutopiaproject.org/cgibin/piece-info.cgi?id=636 Can anyone review it? I made one pass through, and made potential-corrections as I went. (attached) Hopefully you can use a 'diff'

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-11-23 Thread Keith E OHara
Federico Bruni fedelogy at gmail.com writes: I've updated to 2.16 the following piece of Mutopia: http://www.mutopiaproject.org/cgibin/piece-info.cgi?id=636 Can anyone review it? I made one pass through, and made potential-corrections as I went. (attached) Hopefully you can use a 'diff'

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-11-23 Thread Federico Bruni
Il 24/11/2012 03:34, Keith OHara ha scritto: Federico Bruni fedelogy at gmail.com writes: I've updated to 2.16 the following piece of Mutopia: http://www.mutopiaproject.org/cgibin/piece-info.cgi?id=636 Can anyone review it? I made one pass through, and made potential-corrections as I went.

review of a Mutopia file (why TabStaff gives error here?)

2012-11-21 Thread Federico Bruni
Hi LilyPonders, I've updated to 2.16 the following piece of Mutopia: http://www.mutopiaproject.org/cgibin/piece-info.cgi?id=636 Can anyone review it? I had to do a lot of changes... Also, I have a problem with TabStaff. When I started to update the input I used also TabStaff, then I commented

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-11-21 Thread Thomas Morley
2012/11/22 Federico Bruni fedel...@gmail.com: Hi LilyPonders, I've updated to 2.16 the following piece of Mutopia: http://www.mutopiaproject.org/cgibin/piece-info.cgi?id=636 Can anyone review it? I had to do a lot of changes... Also, I have a problem with TabStaff. When I started to

Re: review of a Mutopia file (why TabStaff gives error here?)

2012-11-21 Thread Federico Bruni
Il 22/11/2012 01:32, Thomas Morley ha scritto: Hi Federico, in one case you used \0 as StringNumber-indication. Seems it crashes when used in a TabStaff. Yup, I've removed it and TabStaff compiles. Now I realize that there are many string numbers missing in the second part of the piece.