]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/formatting-lyrics-syllables.ly
ab1c3f2ecd2bfc9579bbe519821de1d110a60522
[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 = "text, vocal-music"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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: 30339cb3706f6399c84607426988b25f79b4998c
29   texidocfr = "
30 Le mode @emph{markup} permet d'individualiser la mise en forme de
31 certaines syllabes.
32
33 "
34   doctitlefr = "Mise en forme individuelle de syllabes"
35
36   texidoc = "
37 Markup mode may be used to format individual syllables in lyrics.
38
39 "
40   doctitle = "Formatting lyrics syllables"
41 } % begin verbatim
42
43 mel = \relative c'' { c4 c c c }
44 lyr = \lyricmode {
45   Lyrics \markup { \italic can } \markup { \with-color #red contain }
46   \markup { \fontsize #8 \bold Markup! }
47 }
48
49 <<
50   \new Voice = melody \mel
51   \new Lyrics \lyricsto melody \lyr
52 >>