Horizontally centered systems on a page: Difference between revisions
Appearance
m New category Tags: Mobile edit Mobile web edit |
m Lemzwerg moved page Horizontal centered systems on a page to Horizontally centered systems on a page without leaving a redirect: Misspelled title |
(No difference)
| |
Revision as of 06:12, 28 February 2026
If you want your systems horizontally centered, as sometimes needed in contemporary music, you have to use a \score inside a \markup construction for every line.
\version "2.24"
%% http://lsr.di.unimi.it/LSR/Item?id=701
\paper { tagline = ##f }
%here starts the snippet:
\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 {}
}
}
}