]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/formatting-lyrics-syllables.ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / formatting-lyrics-syllables.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.62"
4
5 \header {
6   lsrtags = "text, vocal-music"
7
8   texidoc = "
9 To format individual syllables in lyrics, use @code{\\markup @{ ....
10 @}} on these lyrics.
11
12 "
13   doctitle = "Formatting lyrics syllables"
14 } % begin verbatim
15 % Tip taken from http://lists.gnu.org/archive/html/lilypond-user/2007-12/msg00215.html
16 \header {
17   title = "Markup can be used inside lyrics!"
18 }
19
20 mel = \relative c'' { c4 c c c }
21 lyr = \lyricmode {
22   Lyrics \markup { \italic "can" } \markup {\with-color #red "contain" }
23   \markup {\fontsize #8 \bold "Markup!" }
24 }
25
26 <<
27   \context Voice = melody \mel
28   \context Lyrics \lyricsto melody \lyr
29 >>
30