On 2024-01-28 12:09 am, Bernhard Kleine wrote:
\header {
  title = "Pastoral-Messe in C"
  piece = "Kyrie"
}

If you take a look at titling-init.ly, you'll see the default definition of scoreTitleMarkup.

%%%%
scoreTitleMarkup = \markup { \column {
  \on-the-fly \print-all-headers { \bookTitleMarkup \hspace #1 }
  \fill-line {
    \fromproperty #'header:piece
    \fromproperty #'header:opus
  }
}
}
%%%%

From this, we can see that piece and opus normally occupy the same line (piece to the left, opus to the right). All you need to do is provide a customized scoreTitleMarkup in your \paper that applies the header fields how you wish.


-- Aaron Hill

Reply via email to