]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/font-name.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / font-name.ly
1 \version "2.17.6"
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 { ragged-right = ##t }
13
14
15 {
16   \override Score.PaperColumn.keep-inside-line = ##f
17   \override Staff.TimeSignature.font-name = #"Times New Roman"
18   \time 3/4
19   \set Score.skipBars = ##t
20   \override Staff.MultiMeasureRestText.font-name = #"LuxiMono"
21   R1*21^"Rest in LuxiMono"
22
23   c'1_\markup {
24     \override #'(font-name . "Vera Bold")
25       \override #'(font-size . 4)
26         { This text is in large Vera Bold }
27   }
28 }
29