2013/4/24 Roman Stawski <[email protected]>

> Hi folks
>
> I've just comme across this in 2.17.11
>
> ---
> \version "2.17.11"
>
> \paper { ragged-right = ##t }
>
>
> {
>
>    \new PianoStaff <<
>
>      \new Staff \relative c'' { a1 }
>
>      \new Staff \relative c' { f1 }
>
>    >>
>
>    \break
>
>    \new PianoStaff <<
>
>      \new Staff \relative c'' { b1 }
>
>      \new Staff \relative c'' { g1 }
>
>    >>
>
> }
> ---
>
>
> *Where* does the extra staff come from?
>
>
You can find an explanation here:
http://lilypond.org/doc/v2.16/Documentation/usage/common-errors#an-extra-staff-appears

the right input is:

\version "2.17.11"


\paper { ragged-right = ##t }


 \new PianoStaff {

  <<

    \new Staff \relative c'' { a1 }

    \new Staff \relative c' { f1 }

  >>

}



 \new PianoStaff {

  <<

    \new Staff \relative c'' { b1 }

    \new Staff \relative c'' { g1 }

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

Reply via email to