]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/formatting-lyrics-syllables.ly
Merge remote-tracking branch 'origin/master' into translation
[lilypond.git] / Documentation / snippets / formatting-lyrics-syllables.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.di.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.18.0"
8
9 \header {
10   lsrtags = "text, vocal-music"
11
12   texidoc = "
13 Markup mode may be used to format individual syllables in lyrics.
14
15 "
16   doctitle = "Formatting lyrics syllables"
17 } % begin verbatim
18
19 mel = \relative c'' { c4 c c c }
20 lyr = \lyricmode {
21   Lyrics \markup { \italic can } \markup { \with-color #red contain }
22   \markup { \fontsize #8 \bold Markup! }
23 }
24
25 <<
26   \new Voice = melody \mel
27   \new Lyrics \lyricsto melody \lyr
28 >>