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