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