blob: 99e80cd7e2d833bce0f7885babce8fdb90d7d941 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
% DO NOT EDIT this file manually; it is automatically
% generated from Documentation/snippets/new
% Make any changes in Documentation/snippets/new/
% and then run scripts/auxiliar/makelsr.py
%
% This file is in the public domain.
%% Note: this file works from version 2.18.0
\version "2.18.0"
\header {
= "text, tweaks-and-overrides"
= "
The default font families for text can be overridden with
@code{make-pango-font-tree}.
"
= "Changing the default text font family"
} % begin verbatim
\paper {
% change for other default global staff size.
myStaffSize = #20
%{
run
lilypond -dshow-available-fonts blabla
to show all fonts available in the process log.
%}
#(define fonts
(make-pango-font-tree "Times New Roman"
"Nimbus Sans,Nimbus Sans L"
"Luxi Mono"
;; "Helvetica"
;; "Courier"
(/ myStaffSize 20)))
}
\relative c'' {
c4^\markup {
roman: foo \bold bla \italic bar \italic \bold baz
}
c'4_\markup {
\override #'(font-family . sans)
{
sans: foo \bold bla \italic bar \italic \bold baz
}
}
c'2^\markup {
\override #'(font-family . typewriter)
{
mono: foo \bold bla \italic bar \italic \bold baz
}
}
}
|