lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Two's company : three's the result


From: Federico Bruni
Subject: Re: Two's company : three's the result
Date: Wed, 24 Apr 2013 21:03:05 +0200

2013/4/24 Roman Stawski <address@hidden>
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 }

  >>


reply via email to

[Prev in Thread] Current Thread [Next in Thread]