]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/formatting-lyrics-syllables.ly
Merge branch 'master' of ssh+git://git.sv.gnu.org/srv/git/lilypond
[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 %% Tags: editorial-and-educational-use, text, vocal-music
4 \version "2.11.35"
5
6 \header { texidoc = "
7 To format single lyrics syllables, you can simply use \\markup @{ ....
8 @} on these lyrics!
9 " }
10 % begin verbatim
11 % Tip taken from http://lists.gnu.org/archive/html/lilypond-user/2007-12/msg00215.html
12 \header {
13   title = "Markup can be used inside lyrics!" 
14 }
15 % begin verbatim
16 melody = \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 \context Staff << 
23   \context Voice = "mel" << \melody >>
24   \context Lyrics \lyricsto "mel" \lyr
25 >>
26