]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/formatting-lyrics-syllables.ly
Merge branch 'master' of ssh+git://hanwen@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 \version "2.11.38"
4
5 \header {
6   lsrtags = "editorial-and-educational-use, text, vocal-music"
7  texidoc = "
8 To format single lyrics syllables, you can simply use \\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 % begin verbatim
17 melody = \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 \context Staff << 
24   \context Voice = "mel" << \melody >>
25   \context Lyrics \lyricsto "mel" \lyr
26 >>
27