]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/formatting-lyrics-syllables.ly
Updates LSR locally
[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 %%  Translation of GIT committish: f88e964fea14c10b48787ec9f4b5f8261a23de48
11   texidocfr = "
12 Le mode markup permet d'individualiser la mise en forme de certaines syllabes.
13
14 "
15   doctitlefr = "Mise en forme individuelle de syllabes"
16
17
18   lsrtags = "text, vocal-music"
19
20 %%%    Translation of GIT committish: f86f00c1a8de0f034ba48506de2801c074bd5422
21   texidocde = "
22 Textbeschriftungsmodus kann eingesetzt werden, um individuelle Silben im Gesangstext
23 zu formatieren.
24
25 "
26   doctitlede = "Silben im Gesangstext formatieren"
27
28   texidoc = "
29 Markup mode may be used to format individual syllables in lyrics.
30
31 "
32   doctitle = "Formatting lyrics syllables"
33 } % begin verbatim
34
35 mel = \relative c'' { c4 c c c }
36 lyr = \lyricmode {
37   Lyrics \markup { \italic can } \markup { \with-color #red contain }
38   \markup { \fontsize #8 \bold Markup! }
39 }
40
41 <<
42   \new Voice = melody \mel
43   \new Lyrics \lyricsto melody \lyr
44 >>