]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/formatting-lyrics-syllables.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / formatting-lyrics-syllables.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.0"
8
9 \header {
10   lsrtags = "text, vocal-music"
11
12 %%%    Translation of GIT committish: f86f00c1a8de0f034ba48506de2801c074bd5422
13   texidocde = "
14 Textbeschriftungsmodus kann eingesetzt werden, um individuelle Silben im Gesangstext
15 zu formatieren.
16
17 "
18   doctitlede = "Silben im Gesangstext formatieren"
19
20   texidoc = "
21 Markup mode may be used to format individual syllables in lyrics.
22
23 "
24   doctitle = "Formatting lyrics syllables"
25 } % begin verbatim
26
27 mel = \relative c'' { c4 c c c }
28 lyr = \lyricmode {
29   Lyrics \markup { \italic can } \markup { \with-color #red contain }
30   \markup { \fontsize #8 \bold Markup! }
31 }
32
33 <<
34   \new Voice = melody \mel
35   \new Lyrics \lyricsto melody \lyr
36 >>