On 14/03/14 19:33, Christian wrote:
Hi all,

Currently I am working on a style sheet for my future lilypond projects.
I was wondering how to define a font for e.g. title, composer and so on.
I have tried to make a header  context within the \layout{}, but this
doesn't seem to work.

If you just want to change the font for those items, like so:

\header {

title = \markup {

\override #'(font-name . "Spectrum MT SC")

"Pezzo Tedesco"

}

composer = \markup {

\override #'(font-name . "Spectrum MT SC")

"Anon. c.1575"

}

}


If you want to change the fonts used throughout the score for serif, sans-serif, and monospaced, then like so:


\paper {

#(define fonts

(make-pango-font-tree "Charis SIL"

"Andika"

"Liberation Mono"

(/ (* staff-height pt) 2.5)))

% rest of paper section here
}



Nick
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to