]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/formatting-lyrics-syllables.ly
Refactor event-listener.ly to use context instead of engraver.
[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: ea0b270e14781707ab52683acddf9302bbe337f3
13   texidoces = "
14 Es posible usar el modo de marcado para dar formato a sílabas
15 individuales dentro de la letra.
16
17 "
18   doctitlees = "Dar formato a sílabas de la letra"
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 %%  Translation of GIT committish: d9d1da30361a0bcaea1ae058eb1bc8dd3a5b2e4c
29   texidocfr = "
30 Le mode markup permet d'individualiser la mise en forme de certaines syllabes.
31
32 "
33   doctitlefr = "Mise en forme individuelle de syllabes"
34
35   texidoc = "
36 Markup mode may be used to format individual syllables in lyrics.
37
38 "
39   doctitle = "Formatting lyrics syllables"
40 } % begin verbatim
41
42 mel = \relative c'' { c4 c c c }
43 lyr = \lyricmode {
44   Lyrics \markup { \italic can } \markup { \with-color #red contain }
45   \markup { \fontsize #8 \bold Markup! }
46 }
47
48 <<
49   \new Voice = melody \mel
50   \new Lyrics \lyricsto melody \lyr
51 >>