Add point-and-click to non-default rehearsal marks.
[lilypond/mpolesky.git] / Documentation / snippets / changing-the-default-text-font-family.ly
blob348aee50aba4b5c612ba4f9b1cb4a5a99ed81993
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.29"
6 \header {
7 lsrtags = "text, tweaks-and-overrides"
9 texidoc = "
10 The default font families for text can be overridden with
11 @code{make-pango-font-tree}.
14 doctitle = "Changing the default text font family"
15 } % begin verbatim
17 \paper {
18 % change for other default global staff size.
19 myStaffSize = #20
21 run
22 lilypond -dshow-available-fonts blabla
23 to show all fonts available in the process log.
26 #(define fonts
27 (make-pango-font-tree "Times New Roman"
28 "Nimbus Sans"
29 "Luxi Mono"
30 ;; "Helvetica"
31 ;; "Courier"
32 (/ myStaffSize 20)))
35 \relative c'' {
36 c4^\markup {
37 roman: foo \bold bla \italic bar \italic \bold baz
39 c'4_\markup {
40 \override #'(font-family . sans)
42 sans: foo \bold bla \italic bar \italic \bold baz
45 c'2^\markup {
46 \override #'(font-family . typewriter)
48 mono: foo \bold bla \italic bar \italic \bold baz