lilypond-user
[Top][All Lists]
Advanced

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

Re: pageBreak?


From: Trevor Bača
Subject: Re: pageBreak?
Date: Thu, 1 Feb 2007 16:36:23 -0600

On 2/1/07, Ole Schmidt <address@hidden> wrote:
So, instead of


  \override NonMusicalPaperColumn #'line-break-permission = ##f
  \override NonMusicalPaperColumn #'page-break-permission = ##f


I have to use


  \override NonMusicalPaperColumn #'line-break-permission = ##f
  \override NonMusicalPaperColumn #'page-break-permission = '(),


right?

Yup, until 2.11.16 (according to Joe). So now we have two good minimal
examples that show each setting perfectly:


%%% #'line-break-permission = #'() BEGIN %%%

\version "2.11.15"

\new Score \with {
  \override NonMusicalPaperColumn #'page-break-permission = #'()
} {
  \new Staff {
     \repeat unfold 200 { c'4 c'4 c'4 c'4 }
  }
}

%%% END %%


and


%%% BEGIN #'line-break-permission = ##f %%%

\version "2.11.15"

\new Score \with {
  \override NonMusicalPaperColumn #'line-break-permission = ##f
} {
  \new Staff {
     \repeat unfold 200 { c'4 c'4 c'4 c'4 }
  }
}

%%% END %%%

Neat. There's an awful lot of layout power in the NonMusicalPaperColumn grob ...


--
Trevor Bača
address@hidden

reply via email to

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