lilypond-user
[Top][All Lists]
Advanced

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

Re: title in the Breitkopf fraktura font


From: Henning Hraban Ramm
Subject: Re: title in the Breitkopf fraktura font
Date: Thu, 31 Aug 2023 18:34:21 +0200
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:102.0) Gecko/20100101 Thunderbird/102.14.0

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

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