on 2013-05-30 at 06:38 Kieren MacMillan wrote:

> 1. It's not cross-staffing; and,

well, evidently i was not fast enough to finish the lilypond example and
post it to the list before you got a response from this great list.
anyway, the solution i came up with is below.

> 2. The eighth-note flags are not appearing.

as for this, apparently now you don't need anymore to manually include
\autoBeamOff when using \crossStaff, it seems to do that automatically. i
didn't use \autoBeamOff and the output is right. that's why the flags were
not appearing in your code.

is that so? if it is, the example in the manual at the end of 2.2.1 should
be changed.


\version "2.17.19"
\language "english"

piano_notes_upper = \relative d' {
  <d fs d'>4 r r r8 d   | % 16
  r cs r b r a r cs | % 17
}

piano_notes_crosstaff = \relative d {
  s2. s8 \crossStaff { \voiceOne d | % 16
  s cs s \parenthesize b s \parenthesize a s cs } | % 17
}

piano_notes_lower = \relative d, {
  \clef bass
  <d d'>4 r r \voiceTwo { d-.   | % 16
  cs4-. b-. a-. cs-. }  | % 17
}

\layout {
  \context {
    \PianoStaff
    \consists #Span_stem_engraver
  }
}

\score {
  \new PianoStaff <<
    \new Staff << \key d \major \piano_notes_upper >>
    \new Staff << \key d \major
      \piano_notes_crosstaff
      \piano_notes_lower
    >>
  >>  
}


> 
> Thanks,
> Kieren.
> _______________________________________________
> lilypond-user mailing list
> [email protected]
> https://lists.gnu.org/mailman/listinfo/lilypond-user



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

Reply via email to