Re: one measure per line

2008-09-09 Thread Kieren MacMillan
Hi Mark: Let's say you have 100 measures in your score. Either of these will work: \layout { ragged-right = ##t system-count = #100 } \paper { ragged-right = ##t system-count = #100 } Man, I just love an elegant solution! Kudos, Kieren.

Re: one measure per line

2008-09-09 Thread Josh Parmenter
again, thanks! these both help quite a bit! Best Josh On Sep 9, 2008, at 12:07 AM, Dmytro O. Redchuk wrote: 2008/9/9 Mark Polesky <[EMAIL PROTECTED]>: Josh, Let's say you have 100 measures in your score. Either of these will work: I would say: Let's say you have N measures in your score.

Re: one measure per line

2008-09-09 Thread Josh Parmenter
brilliant! Thanks all. Josh On Sep 8, 2008, at 11:52 PM, Mark Polesky wrote: Josh, Let's say you have 100 measures in your score. Either of these will work: \layout { ragged-right = ##t system-count = #100 } \paper { ragged-right = ##t system-count = #100 } Cheers, Mark

Re: one measure per line

2008-09-09 Thread Dmytro O. Redchuk
2008/9/9 Mark Polesky <[EMAIL PROTECTED]>: > Josh, > > Let's say you have 100 measures in your score. > Either of these will work: I would say: Let's say you have N measures in your score. Either of these will work: \layout { ragged-right = ##t system-count = #K } \paper { ragged-right = ##t

Re: one measure per line

2008-09-09 Thread Mark Polesky
Josh, Let's say you have 100 measures in your score. Either of these will work: \layout { ragged-right = ##t system-count = #100 } \paper { ragged-right = ##t system-count = #100 } Cheers, Mark ___ lilypond-user mailing list lilypond-user@g

Re: one measure per line

2008-09-08 Thread Kieren MacMillan
Hi Josh (et al.), Let's assume your piece is in 4/4 and is 25 measures long. To avoid that limitation, the bar-line engraver might be Scheme- hacked to include a forced \break at every barline… Kieren. ___ lilypond-user mailing list lilypond-user@

Re: one measure per line

2008-09-08 Thread Josh Parmenter
Thanks David... that actually gives me some ideas. Josh On Sep 8, 2008, at 11:03 AM, David Bobroff wrote: I'm not sure that LilyPond has a parameter to set to do what you want. What springs to my mind is using \break to achieve the effect you want. Let's assume your piece is in 4/4 and is

Re: one measure per line

2008-09-08 Thread David Bobroff
I'm not sure that LilyPond has a parameter to set to do what you want. What springs to my mind is using \break to achieve the effect you want. Let's assume your piece is in 4/4 and is 25 measures long. myBreaks = { \repeat unfold 25 { s1 \break } } Then, in your \score