I actually tested that shortly after I sent the original post and will definietly be utilizing something like that. Thanks!

On 5/14/2022 12:42, Kieren MacMillan wrote:
Hi Josh,

I use a slightly modified header and I am trying to position the composer, 
arranger, and opus (which I am using for additional arranger information) 
fields evenly.
One note (especially if this is a "housestyle" that will be used again): No 
need to overload the opus field. Just add a new field! e.g.

%%%  SNIPPET BEGINS
\version "2.23.4"

\header {
   title = "My Piece"
   opus = "22"
   additional-arranger = "Arranger II"
}

\paper {
   bookTitleMarkup = ##f
   scoreTitleMarkup = \markup \column {
     \fill-line { "" \bold \fontsize #4 \fromproperty #'header:title "" }
     \fill-line { "" \concat { "OPUS: " \fromproperty #'header:opus } "" }
     \fill-line { "" "" \concat { "Additional Arranger: " \fromproperty 
#'header:additional-arranger } }
   }
}

\score { c'1 }
%%%  SNIPPET ENDS

Hope that helps!
Kieren.

Reply via email to