]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-stanza-fonts.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / Documentation / snippets / changing-stanza-fonts.ly
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"
5
6 \header {
7   lsrtags = "vocal-music"
8
9   texidoc = "
10 Fonts can be changed independently for each stanza, including the font
11 used for printing the stanza number.
12
13 "
14   doctitle = "Changing stanza fonts"
15 } % begin verbatim
16
17 \new Voice {
18   \time 3/4
19   g2 e4
20   a2 f4
21   g2.
22 }
23 \addlyrics {
24   \set stanza = #"1. "
25   Hi, my name is Bert.
26 }
27 \addlyrics {
28   \override StanzaNumber #'font-name = #"DejaVu"
29   \set stanza = #"2. "
30   \override LyricText #'font-family = #'typewriter
31   Oh, ché -- ri, je t'aime
32 }
33