X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fformatting-lyrics-syllables.ly;h=fa99151b8e5b7ee8a1c699a04764d54dcd685c18;hb=1488d5b9c8b56595eb93ef5c0532c5f61cd6354d;hp=d23c0cb559aa5c0de09654e8abf411adba435515;hpb=94408d4a2e538e8812561f29e09116ede58dd042;p=lilypond.git diff --git a/Documentation/snippets/formatting-lyrics-syllables.ly b/Documentation/snippets/formatting-lyrics-syllables.ly index d23c0cb559..fa99151b8e 100644 --- a/Documentation/snippets/formatting-lyrics-syllables.ly +++ b/Documentation/snippets/formatting-lyrics-syllables.ly @@ -1,33 +1,43 @@ -%% 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.13.29" +\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" + +%% 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 >> - -