]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-stanza-fonts.ly
Local updates from LSR
[lilypond.git] / Documentation / snippets / changing-stanza-fonts.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10 %% Translation of GIT committish: 1cda7b7b8219cb97399b8e7b56c1115aaf82c002
11   texidocfr = "
12 Chaque couplet peut disposer de sa propre fonte, y compris son numéro.
13
14 "
15   doctitlefr = "Changement de fontes des couplets"
16
17   lsrtags = "vocal-music, really-simple"
18
19   texidoc = "
20 Fonts can be changed independently for each stanza, including the font
21 used for printing the stanza number.
22
23 "
24   doctitle = "Changing stanza fonts"
25 } % begin verbatim
26
27 \new Voice {
28   \time 3/4
29   g2 e4
30   a2 f4
31   g2.
32 }
33 \addlyrics {
34   \set stanza = #"1. "
35   Hi, my name is Bert.
36 }
37 \addlyrics {
38   \override StanzaNumber #'font-name = #"DejaVu"
39   \set stanza = #"2. "
40   \override LyricText #'font-family = #'typewriter
41   Oh, ché -- ri, je t'aime
42 }
43