]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/formatting-lyrics-syllables.ly
Doc: run makelsr locally
[lilypond.git] / Documentation / snippets / formatting-lyrics-syllables.ly
index 54c13a8553d2517c1f74b568ec6b5bbf43f098f6..49b1308e7522e61ea0dfc68f9e9bbc333ccba359 100644 (file)
@@ -1,32 +1,49 @@
-%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
+%% 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.13.1"
+\version "2.14.2"
 
 \header {
-  lsrtags = "text, vocal-music"
+  lsrtags = "vocal-music, text"
+
+%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
+  texidoces = "
+Es posible usar el modo de marcado para dar formato a sílabas
+individuales dentro de la letra.
+
+"
+  doctitlees = "Dar formato a sílabas de la letra"
+%%%    Translation of GIT committish: f86f00c1a8de0f034ba48506de2801c074bd5422
+  texidocde = "
+Textbeschriftungsmodus kann eingesetzt werden, um individuelle Silben im Gesangstext
+zu formatieren.
+
+"
+  doctitlede = "Silben im Gesangstext formatieren"
+%%  Translation of GIT committish: d9d1da30361a0bcaea1ae058eb1bc8dd3a5b2e4c
+  texidocfr = "
+Le mode markup permet d'individualiser la mise en forme de certaines syllabes.
+
+"
+  doctitlefr = "Mise en forme individuelle de syllabes"
 
   texidoc = "
-To format individual syllables in lyrics, use @code{\\markup @{ ....
-@}} on these lyrics.
+Markup mode may be used to format individual syllables in lyrics.
 
 "
   doctitle = "Formatting lyrics syllables"
 } % begin verbatim
 
-% Tip taken from http://lists.gnu.org/archive/html/lilypond-user/2007-12/msg00215.html
-\header {
-  title = "Markup can be used inside 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
 >>
-
-