Formatting lyrics syllables: Difference between revisions

m Replace version="2.24.0" with version="2.24" now that the LilyWiki extension supports auto-selecting the latest release in a stable series
mNo edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
Markup mode may be used to format individual syllables in lyrics.
The <code>\markup</code> command can be used in <code>\lyricmode</code> blocks to format individual syllables in lyrics.


<lilypond version="2.24">
<lilypond version="2.24">
%LSR Tip taken from http://lists.gnu.org/archive/html/lilypond-user/2007-12/msg00215.html
mel = \relative c'' { c4 c c c c1 }
mel = \relative c'' { c4 c c c c1 }
lyr = \lyricmode {
lyr = \lyricmode {
   Your lyrics \markup { \italic can } \markup { \with-color #red contain }
   Your lyrics \markup { \italic can }
  \markup { \with-color #red contain }
   \markup { \fontsize #8 \bold Markup! }
   \markup { \fontsize #8 \bold Markup! }
}
}


<<
<<
   \new Voice = melody \mel
   \new Voice = "melody" \mel
   \new Lyrics \lyricsto melody \lyr
   \new Lyrics \lyricsto "melody" \lyr
>>
>>
</lilypond>
</lilypond>


[[Category:Text]]
[[Category:Vocal music]]
[[Category:Vocal music]]
[[Category:Vocal music]]
[[Category:Text]]
[[Category:Included in the official documentation]]
[[Category:Included in the official documentation]]
[[Category:Snippet]]