]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/font-name.ly
* input/regression/new-markup-scheme.ly: oops. font-family=music
[lilypond.git] / input / regression / font-name.ly
1 \version "2.4.0"
2
3 \header {
4
5     texidoc = "Other fonts can be used by setting font-name for
6 the appropriate object. This may include Postscript fonts that are
7 available through (La)TeX.
8
9
10 BROKEN by pango/fontconfig
11 "
12
13
14 }
15
16 %{
17
18  Postscript fonts are switched off by default,
19  for compatibility with TeX installations that have no
20  PS fonts installed.
21 %}
22
23 \score {
24      {
25
26        %% FIXME. 
27 %       \override Staff.TimeSignature  #'font-name = #"cmr17"
28         \set Score.skipBars = ##t
29
30         % use font-name putri8r for Utopia Italic :
31         
32         \override Staff.MultiMeasureRestText   #'font-name = #"cmss12"
33
34
35         % use "ptmb8r" for Times Roman
36         
37         c'1_\markup { \override #'(font-name . "cmdunh10")
38                           { This text is Dunhill } }
39
40              R1*21^"Wait for Utopia Italic"
41              }
42     
43     \layout { raggedright = ##t }
44
45 }