Re: auto beaming strangeness

2007-06-30 Thread Neil Puttock
Hi Adam, On 6/30/07, Adam Good <[EMAIL PROTECTED]> wrote: #(revert-auto-beam-setting '(end * * 9 8) 6 8) You don't need this line - it doesn't do anything, since there's no default auto-beam setting for this. Also, your new values are needlessly complicated - you were almost right the firs

Re: auto beaming strangeness

2007-06-30 Thread Adam Good
Thanks Neil. I should have paid more attention to the manual when learning this...here's the fix I was looking for: %%% \time 9/8 %%% revert default values in scm/auto-beam.scm regarding 9/8 time 3+3 +3+2 #(revert-auto-beam-setting '(end * * 9 8) 3 8) #(revert-auto-beam-setting '(end * * 9

Re: auto beaming strangeness

2007-06-30 Thread Neil Puttock
Hi Adam, Your revert doesn't work because it doesn't match the default for 9/8. If you check the auto-beam engraver settings in auto-beam.scm you'll see the following line: ((end * * 9 8) . ,(ly:make-moment 3 8)) So you need to change your revert to the following: #(revert-auto-beam-setting '

Re: auto beaming strangeness

2007-06-29 Thread Adam Good
On Jun 29, 2007, at 7:44 PM, Bainos wrote: by default there is a division at 3/8.. try using revert-auto-beam.. I did try that actually...am I doing something wrong here? % \version "2.11.17-1" \relative a' { \time 9/8 #(revert-auto-beam-setting '(end * * * *) 3 8) #(override-auto-b

Re: auto beaming strangeness

2007-06-29 Thread Bainos
by default there is a division at 3/8.. try using revert-auto-beam.. look here http://lilypond.org/doc/v2.10/Documentation/user/lilypond/Setting-automatic-beam-behavior#Setting-automatic-beam-behavior -- View this message in context: http://www.nabble.com/auto-beaming-strangeness

auto beaming strangeness

2007-06-29 Thread Adam Good
Hi I'm using Dev version 2.11.27-1 I would expect the following example with 9/8 time sig to be grouped and auto beamed in 2+2+2+3 % \version "2.11.17-1" \relative a' { \time 9/8 #(override-auto-beam-setting '(end * * * *) 2 8) #(override-auto-beam-setting '(end * * * *) 4 8) #(over