X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fformatting-lyrics-syllables.ly;h=983c0b98bca8d6466f36d32c8a96d2bb2550530f;hb=0a34e892b31530e87380bffaac0bb9cf9a1c8a91;hp=54c13a8553d2517c1f74b568ec6b5bbf43f098f6;hpb=1c859650b6ff11a7dbe829328fd5cae3816b9231;p=lilypond.git diff --git a/Documentation/snippets/formatting-lyrics-syllables.ly b/Documentation/snippets/formatting-lyrics-syllables.ly index 54c13a8553..983c0b98bc 100644 --- a/Documentation/snippets/formatting-lyrics-syllables.ly +++ b/Documentation/snippets/formatting-lyrics-syllables.ly @@ -1,32 +1,28 @@ -%% 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.di.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.18.0" \header { lsrtags = "text, vocal-music" 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 >> - -