On Sat, Sep 01, 2001 at 11:53:31AM +0200, Jérémie Lumbroso <[EMAIL PROTECTED]> was heard to say: > DB> I'm typesetting some piano music that has large chords in the vicinity > DB> of middle C. I'd like to have the chords use both staves, to avoid having > DB> too many ledger lines, but I haven't been able to get Lilypond to do this. > DB> Is this possible, or is it a missing feature? > > No, it is possible already, you just need to use the > \autochange command. For more details, visit the following > link : > > >http://www.lilypond.org/development/Documentation/user/out-www/lilypond/Automatic-staff-changes.html I did use the autochange command; Lily put the entire chord on either the top or bottom staff. What I want is some notes on one staff and some on another. Am I just doing something wrong in using autochange? (I thought it looked straightforward, and it works for single-note voices..) I've attached an example. As far as I can see, autochange doesn't affect the chords at all. Thanks, Daniel -- /-------------------- Daniel Burrows <[EMAIL PROTECTED]> --------------------\ | We are Debian of Borg. | | You will be packaged. | | Resistance is futile. | \----------------- The Turtle Moves! -- http://www.lspace.org ----------------/
\score { \context PianoStaff \notes \relative c' < \context Staff="up" { \autochange Staff \context Voice=VA { f e d c | b a g f | f g a b | c d e f | <f,4 a f' a> <g b g' b> <a c a' c> <b d b' d> | <c e c' e> <d f d' f> <e g e' g> <f a f' a> | <f a f' a> <e g e' g> <d f d' f> <c e c' e> | <b d b' d> <a c a' c> <g b g' b> <f a f' a> | <e g e' g> <d f d' f> <c e c' e> <b d b' d> } } \context Staff=down {\clef bass s1*8} > }