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.
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.
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
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
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
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@
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
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