Re: flatten ties ~ proportional notation.

2008-12-21 Thread Neil Puttock
2008/12/21 Rob Canning : > Brett Duncan wrote: >> >> Rob Canning wrote: >>> >>> i was trying to do it with sed with a line like this: >>> >>> sed 's/~/\\glissando/' header-inserted > ties-fixed; >>> >>> but ran into trouble with all the ^ sybols and so on - >> >> I tried this myself and it seems t

Re: flatten ties ~ proportional notation.

2008-12-21 Thread Rob Canning
Brett Duncan wrote: Rob Canning wrote: i was trying to do it with sed with a line like this: sed 's/~/\\glissando/' header-inserted > ties-fixed; but ran into trouble with all the ^ sybols and so on - I tried this myself and it seems to work fine once add the 'g' flag: 's/~/\\glissando/g'

Re: flatten ties ~ proportional notation.

2008-12-21 Thread Brett Duncan
Rob Canning wrote: i was trying to do it with sed with a line like this: sed 's/~/\\glissando/' header-inserted > ties-fixed; but ran into trouble with all the ^ sybols and so on - I tried this myself and it seems to work fine once add the 'g' flag: 's/~/\\glissando/g' However, horizontal

Re: flatten ties ~ proportional notation.

2008-12-19 Thread Neil Puttock
2008/12/19 Rob Canning : > > on its own this works fine but if i combine it with somthing else it fails - > not sure what i am doing wrong here... Hmm, it doesn't work with broken ties, since the left-broken part is attached to a paper column rather than a notehead (you can't retrieve a value for

Re: flatten ties ~ proportional notation.

2008-12-19 Thread Rob Canning
This is the easiest way to do it, assuming you don't have any tied chords: \override TieColumn #'tie-configuration = #(lambda (grob) (let* ((notehead (ly:grob-parent grob X)) (y-off (* 2 (ly:grob-property notehead 'Y-offset (list (cons y-off 0 thanks neil

Re: flatten ties ~ proportional notation.

2008-12-18 Thread Neil Puttock
Hi Rob, 2008/12/18 Rob Canning : > ok so i have flattened the tie with: > > \override Tie #'details #'height-limit = #0 > > next i want to make sure all the ties start emerging from the actual note so > there is no vertical offset > > i looked here for other tweekables: > /usr/local/lilypond/usr/s

Re: flatten ties ~ proportional notation.

2008-12-18 Thread Rob Canning
ok so i have flattened the tie with: \override Tie #'details #'height-limit = #0 next i want to make sure all the ties start emerging from the actual note so there is no vertical offset i looked here for other tweekables: /usr/local/lilypond/usr/share/lilypond/current/scm/define-grobs.scm an

Re: flatten ties ~ proportional notation.

2008-12-18 Thread Neil Puttock
2008/12/18 Rob Canning : > strange this doesnt seem to make any difference here - no doubt i have it in > the wrong place in the code or some such - i tried it in a few places but no > luck Apart from my useless typing, if it still doesn't work you must be using a version before 2.11.65 with the

Re: flatten ties ~ proportional notation.

2008-12-18 Thread Rob Canning
Neil Puttock wrote: Hi Rob, hi thanks for the response, 2008/12/18 Rob Canning : hello, i would like to replace ties between notes with a line connecting note heads. i'm not sure how to go about this. should i try and flatten the curve of the tie, make it slightly thicker and change its re

Re: flatten ties ~ proportional notation.

2008-12-18 Thread Rob Canning
Neil Puttock wrote: Hi Rob, hi thanks for the response, 2008/12/18 Rob Canning : hello, i would like to replace ties between notes with a line connecting note heads. i'm not sure how to go about this. should i try and flatten the curve of the tie, make it slightly thicker and change its rel

Re: flatten ties ~ proportional notation.

2008-12-18 Thread Neil Puttock
Hi Rob, 2008/12/18 Rob Canning : > hello, > > i would like to replace ties between notes with a line connecting note > heads. i'm not sure how to go about this. should i try and flatten the curve > of the tie, make it slightly thicker and change its relative possition to > the notehead or is there

flatten ties ~ proportional notation.

2008-12-18 Thread Rob Canning
hello, i would like to replace ties between notes with a line connecting note heads. i'm not sure how to go about this. should i try and flatten the curve of the tie, make it slightly thicker and change its relative possition to the notehead or is there a better way. is there some sort of glob