]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/font-magnification.ly
c685575ff043663c0a197a661abbbb52350344ce
[lilypond.git] / input / regression / font-magnification.ly
1
2 \version "2.6.0"
3 \header { texidoc = "The magnification can be set for any font. Note
4 that this does not change variable symbols such as beams or slurs. 
5 " }
6
7 \score {
8  \relative c'' \context Voice {
9 \override NoteHead  #'font-magnification = #0.9
10 c4
11 \override NoteHead  #'font-magnification = #0.8
12
13
14 c4-"normal"
15   % why doesn't this  work?
16   c4-\markup \bold \magnify #2.0 "foobar"
17
18   \override NoteHead  #'font-magnification = #1.2
19   \override TextScript  #'font-magnification = #2.0
20   c4-"big"
21   \override NoteHead  #'font-magnification = #1.6
22   c4
23 }
24
25 }
26
27