]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/formatting-lyrics-syllables.ly
Doc: NR 4.1.4: document improved spacing on the last page (issue 1377)
[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 %%  Translation of GIT committish: d9d1da30361a0bcaea1ae058eb1bc8dd3a5b2e4c
20   texidocfr = "
21 Le mode markup permet d'individualiser la mise en forme de certaines syllabes.
22
23 "
24   doctitlefr = "Mise en forme individuelle de syllabes"
25
26   texidoc = "
27 Markup mode may be used to format individual syllables in lyrics.
28
29 "
30   doctitle = "Formatting lyrics syllables"
31 } % begin verbatim
32
33 mel = \relative c'' { c4 c c c }
34 lyr = \lyricmode {
35   Lyrics \markup { \italic can } \markup { \with-color #red contain }
36   \markup { \fontsize #8 \bold Markup! }
37 }
38
39 <<
40   \new Voice = melody \mel
41   \new Lyrics \lyricsto melody \lyr
42 >>