lilypond-user
[Top][All Lists]
Advanced

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

Re: Keeping score titles with empty music


From: Kieren MacMillan
Subject: Re: Keeping score titles with empty music
Date: Sat, 12 Jan 2008 14:06:35 -0500

Hi Reinhold,

Since you already know what the titles look like (i.e., you've manually defined the style!), just add a similar \markup.
See example, attached.

Hope this helps!
Kieren.
_____________________________

\version "2.11.35"

% #(set-default-paper-size "a4" 'landscape)
#(set-default-paper-size "a4")
#(set-global-staff-size 14.5)

\header {
  title = "Keep score titles with empty score"
}

\paper {
  scoreTitleMarkup = \markup { \column {
    \fill-line {
      \fontsize #3 \bold \fromproperty #'header:piece
      \null
    }
  }}
}


\score {
  <<
    \context Voice << \relative c'' { c4 d c d } >>
  >>
  \header { piece = "Nr. 1 - Text" }
}

%   \chapter \IIAriePieceName
\markup { \column {
            \fill-line {
                        \fontsize #3 \bold "Nr. 2 - Text tacet"
                        \null
                }}}
\score {
  <<
    \context Voice << {} >>
  >>
  \header { piece = "Nr. 2 - Text tacet" }
}

\score {
  <<
    \context Voice << \relative c'' { c4 d c d } >>
  >>
  \header { piece = "Nr. 3 - Text" }
}





reply via email to

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