]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/font-name.ly
* input/regression/font-name.ly: show Pango fonts for
[lilypond.git] / input / regression / font-name.ly
1 \version "2.5.19"
2
3 \header {
4
5     texidoc = "Other fonts can be used by setting @code{font-name} for
6 the appropriate object. The string should be a Pango font description
7 without size specification."
8
9
10 }
11
12 \layout { raggedright = ##t }
13
14
15 {
16   \override Staff.TimeSignature  #'font-name = #"Times"
17   \time 3/4
18   \set Score.skipBars = ##t
19
20                                 % use font-name putri8r for Utopia Italic :
21   
22   \override Staff.MultiMeasureRestText #'font-name = #"LuxiMono"
23   R1*21^"Rest in LuxiMono"
24
25   c'1_\markup {
26     \override #'(font-name . "Utopia Bold")
27       \override #'(font-size . 4)
28         { This text is in large Utopia Bold }
29   }
30 }
31