Hello. I am working on a multi-movement piece with some parts having
different instrumentation. In the instrumental parts I would like to have
the movement title (in subtitle format), and either the music for that
movement or a large, centered Tacit marking. In this example, if I use an
empty score, the headers don’t print.
(Ideally the “score” would just be a centered markup, but I can’t work out
how to do this.)
Vaughan
%%%%%%
\version "2.24.1"
\paper {
print-all-headers = ##t
}
\header {
title = "SUITE I."
composer = "J. S. Bach."
}
\score {
\header {
subtitle = "Prélude."
title = ##f
composer = ##f
}
\new Staff \relative {
\clef bass
\key g \major
\repeat unfold 2 { g,16( d' b') a b d, b' d, } |
\repeat unfold 2 { g,16( e' c') b c e, c' e, } |
}
}
\score {
\header {
subtitle = "Allemande."
title = ##f
composer = ##f
}
{ <> } % empty score
}
\markup \center-column {
\vspace #4
\fill-line {
\null
\fontsize #4 \bold "Tacet"
\null
}
}
%%%%%