]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/formatting-lyrics-syllables.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / Documentation / snippets / formatting-lyrics-syllables.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.12.2"
5
6 \header {
7   lsrtags = "text, vocal-music"
8
9   texidoc = "
10 Markup mode may be used to format individual syllables in lyrics.
11
12 "
13   doctitle = "Formatting lyrics syllables"
14 } % begin verbatim
15
16 mel = \relative c'' { c4 c c c }
17 lyr = \lyricmode {
18   Lyrics \markup { \italic "can" } \markup {\with-color #red "contain" }
19   \markup {\fontsize #8 \bold "Markup!" }
20 }
21
22 <<
23   \context Voice = melody \mel
24   \context Lyrics \lyricsto melody \lyr
25 >>
26
27