Re: Beam groupings

2013-09-08 Thread Trevor Daniels
Eluze wrote Sunday, September 08, 2013 10:04 AM > I can't reproduce the error(s). > > I suppose your full code is something like > > *code above* > } > {\vibestopstaff} > > then it compiles perfectly in 2.16.0 and higher. > > only when removing or postponing the /\time 2/4/ then errors raise

Re: Beam groupings

2013-09-08 Thread Eluze
EdBeesley wrote > Rachael the version is 2.16.2. > > I've now got the code to work, but the fix for this seems rather strange. > If I put the code before any declared notes in a part it doesn't work, > e.g: > > vibestopstaff = \relative c'' { \time 2/4 > \set Timing.baseMoment = #(ly:make

Re: Beam groupings

2013-09-08 Thread David Kastrup
EdBeesley writes: > Rachael the version is 2.16.2. > > I've now got the code to work, but the fix for this seems rather strange. If > I put the code before any declared notes in a part it doesn't work, e.g: > > vibestopstaff = \relative c'' { \time 2/4 > \set Timing.baseMoment = #(ly:make

Re: Beam groupings

2013-09-08 Thread EdBeesley
Rachael the version is 2.16.2. I've now got the code to work, but the fix for this seems rather strange. If I put the code before any declared notes in a part it doesn't work, e.g: vibestopstaff = \relative c'' { \time 2/4 \set Timing.baseMoment = #(ly:make-moment 2 4) \set Timing

Re: Beam groupings

2013-09-07 Thread Peter Crighton
At the moment I can't give you a reason why this would work instead of the code posted earlier, but here's the code I use in my current projects. Put a \layout block somewhere inside your \score block with the following contents (adjust it to your needs – this produces beamed groups with a length

Re: Beam groupings

2013-09-07 Thread Rachael Thomas Carlson
Hi Ed: You have not told us what version you are running. What version of LilyPond are you running? This code should work for 2.14, 2.16, and 2.17. Rachael On 09/07/2013 08:28 PM, EdBeesley wrote: Thanks everyone for your continued help. Rachael I'm afraid your example didn't work. I did a

Re: Beam groupings

2013-09-07 Thread EdBeesley
Thanks everyone for your continued help. Rachael I'm afraid your example didn't work. I did actually study the relevant section of the manual for a good half hour, and I can see why your example should work, but unfortunately it doesn't :( -- View this message in context: http://lilypond.10690

RE: Beam groupings

2013-09-07 Thread Mark Stephen Mrotek
esley Sent: Saturday, September 07, 2013 5:38 PM To: lilypond-user@gnu.org Subject: Re: Beam groupings Thanks Andrew I was going to do that but the whole part I'm writing has the same beaming pattern throughout, so to keep it tidy I was hoping to avoid doing it manually for every bar. And I

Re: Beam groupings

2013-09-07 Thread Rachael Thomas Carlson
Hello Ed: On 09/07/2013 07:38 PM, EdBeesley wrote: Thanks Andrew I was going to do that but the whole part I'm writing has the same beaming pattern throughout, so to keep it tidy I was hoping to avoid doing it manually for every bar. And I figured I might as well try and understand how it works

Re: Beam groupings

2013-09-07 Thread Andrew Bernard
To do that, refer to the manual section 1.2.4 on beaming. Andrew ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Beam groupings

2013-09-07 Thread Rachael Thomas Carlson
Hello Ed: 2/4 all 4 quavers will be beamed together. \version "2.16.2" \relative c'' { \time 2/4 c8 b a g | \set Timing.baseMoment = #(ly:make-moment 2 4) \set Timing.beatStructure = #'(1) \set Timing.beamExceptions = #'() c b a g | } Rachael _

Re: Beam groupings

2013-09-07 Thread EdBeesley
Thanks Andrew I was going to do that but the whole part I'm writing has the same beaming pattern throughout, so to keep it tidy I was hoping to avoid doing it manually for every bar. And I figured I might as well try and understand how it works now rather than later! On Sun, Sep 8, 2013 at 1:27 A

Re: Beam groupings

2013-09-07 Thread Andrew Bernard
You could use manual beaming, for example. \relative c'' { \time 2/4 c8 b a g | c[ b a g] | } Andrew ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user