Op zondag 04-07-2010 om 13:45 uur [tijdzone +0200], schreef Ole Schmidt: > is it possible to center-align each system in the following snippet > horizontally on the page? > Like: > | - | > | --- | > | ------ | > | --- | > | - |
You can center each line individually... If this can't be done more easily, this might be a nice lsr snippet. Otherwise, let's have the easier one :-) Greetings, Jan. -- Jan Nieuwenhuizen <[email protected]> | GNU LilyPond http://lilypond.org Freelance IT http://JoyOfSource.com | AvatarĀ® http://AvatarAcademy.nl
\paper { #(set-paper-size "a6") }
\layout { ragged-right = ##t indent = 0.0\cm }
\markup {
\fill-line {
\score {
\relative c' {
c4 d e f \break
}
\layout {}
}
}
}
\markup {
\fill-line {
\score {
\new Staff \with {
\remove Time_signature_engraver
}
\relative c' {
g2 f
}
\layout {}
}
}
}
\markup {
\fill-line {
\score {
\new Staff \with {
\remove Time_signature_engraver
}
\relative c' {
c4 d e f g a b a
}
\layout {}
}
}
}
\markup {
\fill-line {
\score {
\new Staff \with {
\remove Time_signature_engraver
}
\relative c' {
g4 f e g b a g
}
\layout {}
}
}
}
<<inline: c.png>>
_______________________________________________ lilypond-user mailing list [email protected] http://lists.gnu.org/mailman/listinfo/lilypond-user
