]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/font-name.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[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
18   % A comma is required
19   % for font name "Times New Roman"'s explicit termination.
20   % If there is no comma, Pango interpret "Times New Roman" as
21   % "Times New" family with "Roman" style.
22   \override Staff.TimeSignature.font-name = #"Times New Roman,"
23   \time 3/4
24   \set Score.skipBars = ##t
25   \override Staff.MultiMeasureRestText.font-name = #"Luxi Mono"
26   R1*21^"Rest in Luxi Mono"
27
28   c'1_\markup {
29     \override #'(font-name . "Bitstream Vera Sans, Bold")
30       \override #'(font-size . 4)
31         { This text is in large Vera Bold }
32   }
33 }
34