Wim,

On Sun, Dec 28, 2014 at 11:47 AM, Shane Brandes <[email protected]> wrote:

> Wim,
>
> you are missing the open [ for the groupings in the bottomstaff.
>
> regards,
>
> Shane
>
> On Sun, Dec 28, 2014 at 12:32 PM, Wim van Dommelen <[email protected]> wrote:
>
>> Hi,
>>
>> I stumbled on a small beaming problem. Attached two small .PNG’s for what
>> should be there (never mind the 7/4, that is a writo), my experimental
>> output and below my compiling code as for what I tried. The problem is in
>> the second voice showing hickups in the second part of both measures where
>> the 1/16 notes are beamed special. When I don’t do the manual beaming I get
>> a pattern which the composer doesn’t like. It looks allright in the first
>> voice, I have about 10 of these and always the beaming in the second voice
>> breaks, the first voice is allright. May be that is a clue to where the
>> problem is?
>>
>> Is there a possibility to get these beamings in a straigth line? Or is
>> this a bug I which should report?
>>
>> Regards,
>> Wim.
>>
>
Looks like Shane has found your problem, but I'd like to suggest a much
less tedious way to get what you're after:

 \version "2.18.0"

VoiceI = \relative f' {
  \time 7/8
  e8.[ dis16] e8.[ dis16]
  \set subdivideBeams = ##t

  fis[ cis cis b b cis] |

  e8.[ dis16] e8.[ dis16]
  fis[ cis cis b b cis] |
}

VoiceII= \relative f' {
  \time 7/8
  \set subdivideBeams = ##t
  fis16 e8. fis16 e8.
  e16[ e e fis e fis] |

  e16 fis8. e16 fis8.
  e16 fis fis e fis e] |
}

\score {
  \new StaffGroup { <<
    \new Staff {
      \VoiceI
    }
    \new Staff {
      \VoiceII
    }
  >> }
}%end score

You can read about this in the snippet "subdividing beams" at
http://lilypond.org/doc/v2.18/Documentation/notation/beams

--David
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to