]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/formatting-lyrics-syllables.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / formatting-lyrics-syllables.ly
index 7c9e5775c56209bce39dd73a69a83bc485a28c9e..aa5df6fa83aca5a89de11df3d2e2fbe0e44f7b19 100644 (file)
@@ -1,7 +1,10 @@
-%% Do not edit this file; it is automatically
+%% DO NOT EDIT this file manually; it is automatically
 %% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
 %% This file is in the public domain.
-\version "2.12.2"
+\version "2.16.0"
 
 \header {
   lsrtags = "text, vocal-music"
@@ -15,13 +18,11 @@ Markup mode may be used to format individual syllables in lyrics.
 
 mel = \relative c'' { c4 c c c }
 lyr = \lyricmode {
-  Lyrics \markup { \italic "can" } \markup {\with-color #red "contain" }
-  \markup {\fontsize #8 \bold "Markup!" }
+  Lyrics \markup { \italic can } \markup { \with-color #red contain }
+  \markup { \fontsize #8 \bold Markup! }
 }
 
 <<
-  \context Voice = melody \mel
-  \context Lyrics \lyricsto melody \lyr
+  \new Voice = melody \mel
+  \new Lyrics \lyricsto melody \lyr
 >>
-
-