Am 31.08.23 um 18:04 schrieb bernhard kleine:
Hallo,

I never tried different fonts, but now I would like to print the title of the music in a fraktura font. Could you please help me with that?

\header{
title = \markup{\override #'(font-name . "BreitkopfFraktur") "Breitkopf Op.1234"}
}

If you want to change it generally (in an include file), you can do it like this:


  bookTitleMarkup = \markup {
    \override #'(baseline-skip . 3.5)
    \column {
      \fill-line { \fromproperty #'header:dedication }
      \override #'(baseline-skip . 3.5)
      \column {
        \huge \larger \bold
        \fill-line {
          \override #'(font-name . "Noteworthy Bold")
          \larger \fromproperty #'header:title
        }
        \fill-line {
          \large \smaller \bold
          \larger \fromproperty #'header:subtitle
        }
        \combine \null \vspace #0.33
        \fill-line {
          \fromproperty #'header:poet
          { \large \bold \fromproperty #'header:instrument }
          \fromproperty #'header:composer
        }
        \fill-line {
          \fromproperty #'header:meter
          \fromproperty #'header:arranger
        }
      }
    }
  }


Hraban

Reply via email to