]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/formatting-lyrics-syllables.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / formatting-lyrics-syllables.ly
index 7c9e5775c56209bce39dd73a69a83bc485a28c9e..8ad4115886019ad74f852a96c1a14e9c9e14d62e 100644 (file)
@@ -1,11 +1,22 @@
-%% 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.14.0"
 
 \header {
   lsrtags = "text, vocal-music"
 
+%%%    Translation of GIT committish: f86f00c1a8de0f034ba48506de2801c074bd5422
+  texidocde = "
+Textbeschriftungsmodus kann eingesetzt werden, um individuelle Silben im Gesangstext
+zu formatieren.
+
+"
+  doctitlede = "Silben im Gesangstext formatieren"
+
   texidoc = "
 Markup mode may be used to format individual syllables in lyrics.
 
@@ -15,13 +26,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
 >>
-
-