Hello:

 

A metered arpeggiated chord is in my piano staff. It has been coded in two
ways (see attached files). Using automatic beaming (auto.ly) all of the
notes are beamed and the stems are of unequal and distracting length. Using
manual beaming (manual.ly) the stem are of equal length and the beams are
separated.

 

How can I get all of the notes beamed and the stems of consistent length?

 

Thank you for your kind attention.

 

Mark

\version "2.16.2"

global = {
  \key des \major
  \numericTimeSignature
  \time 3/4
}
right = \relative c'' {
  \global
s2.
}
left = \relative c' {
  \global
des,8 \times 4/6 { f32  [ aes des \change Staff = "right" f aes des ] } s2 |
}
\score {
  \new PianoStaff \with {
    instrumentName = "Piano"
  } <<
    \new Staff = "right" \right
    \new Staff = "left" { \clef bass \left }
  >>
  \layout { }
}
\version "2.16.2"

global = {
  \key des \major
  \numericTimeSignature
  \time 3/4
}
right = \relative c'' {
  \global
  s8. \times 2/3 { f,32 [ aes des ] } s2 |
}
left = \relative c' {
  \global
 des,8 \times 2/3 { f32 aes des } s16 s2 |
}
\score {
  \new PianoStaff  <<
    \new Staff = "right" \right
    \new Staff = "left" { \clef bass \left }
  >>
  \layout { }
}
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to