]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/changing-stanza-fonts.ly
Web-hu: Fix tiny mistake
[lilypond.git] / Documentation / snippets / new / changing-stanza-fonts.ly
1 \version "2.18.0"
2
3 \header {
4   lsrtags = "really-simple, vocal-music"
5
6   texidoc = "
7 Fonts can be changed independently for each stanza, including the font
8 used for printing the stanza number.
9
10 "
11   doctitle = "Changing stanza fonts"
12 }
13
14 \new Voice {
15   \time 3/4
16   g2 e4
17   a2 f4
18   g2.
19 }
20 \addlyrics {
21   \set stanza = #"1. "
22   Hi, my name is Bert.
23 }
24 \addlyrics {
25   \override StanzaNumber.font-name = #"DejaVu Sans"
26   \set stanza = #"2. "
27   \override LyricText.font-family = #'typewriter
28   Oh, ché -- ri, je t'aime
29 }