]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/formatting-lyrics-syllables.ly
b45eaf6f1a816c7bf4b1e124b70d557bb63ab2bc
[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.38"
4
5 \header {
6   lsrtags = "text, vocal-music"
7  texidoc = "
8 To format individual syllables in lyrics, use @code{\\markup @{ ....
9 @}} on these lyrics.
10 " }
11 % begin verbatim
12 % Tip taken from http://lists.gnu.org/archive/html/lilypond-user/2007-12/msg00215.html
13 \header {
14   title = "Markup can be used inside lyrics!"
15 }
16
17 mel = \relative c'' { c4 c c c }
18 lyr = \lyricmode {
19   Lyrics \markup { \italic "can" } \markup {\with-color #red "contain" }
20   \markup {\fontsize #8 \bold "Markup!" }
21 }
22
23 <<
24   \context Voice = melody \mel
25   \context Lyrics \lyricsto melody \lyr
26 >>
27