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