]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/formatting-lyrics-syllables.ly
Merge branch 'lilypond/translation' into staging
[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: ea0b270e14781707ab52683acddf9302bbe337f3
21   texidoces = "
22 Es posible usar el modo de marcado para dar formato a sílabas
23 individuales dentro de la letra.
24
25 "
26   doctitlees = "Dar formato a sílabas de la letra"
27
28 %%%    Translation of GIT committish: f86f00c1a8de0f034ba48506de2801c074bd5422
29   texidocde = "
30 Textbeschriftungsmodus kann eingesetzt werden, um individuelle Silben im Gesangstext
31 zu formatieren.
32
33 "
34   doctitlede = "Silben im Gesangstext formatieren"
35
36 %%  Translation of GIT committish: d9d1da30361a0bcaea1ae058eb1bc8dd3a5b2e4c
37   texidocfr = "
38 Le mode markup permet d'individualiser la mise en forme de certaines syllabes.
39
40 "
41   doctitlefr = "Mise en forme individuelle de syllabes"
42
43   texidoc = "
44 Markup mode may be used to format individual syllables in lyrics.
45
46 "
47   doctitle = "Formatting lyrics syllables"
48 } % begin verbatim
49
50 mel = \relative c'' { c4 c c c }
51 lyr = \lyricmode {
52   Lyrics \markup { \italic can } \markup { \with-color #red contain }
53   \markup { \fontsize #8 \bold Markup! }
54 }
55
56 <<
57   \new Voice = melody \mel
58   \new Lyrics \lyricsto melody \lyr
59 >>