lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: "Opus" positioning


From: Kieren MacMillan
Subject: Re: "Opus" positioning
Date: Sat, 14 May 2022 12:42:35 -0400

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

[Prev in Thread] Current Thread [Next in Thread]