]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/combining-dynamics-with-markup-texts.ly
95902fea241d9a23d5c12f3dc3b62ed84dc67c59
[lilypond.git] / Documentation / snippets / combining-dynamics-with-markup-texts.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, really-simple, expressive-marks"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13   texidoces = "
14 Ciertas indicaciones dinámicas pueden llevar textos (como @qq{più
15 forte} o @qq{piano subito}). Se pueden producir usando un bloque
16 @code{\\markup}.
17
18 "
19   doctitlees = "Combinar indicaciones dinámicas con marcados textuales"
20
21   texidoc = "
22 Some dynamics may involve text indications (such as @qq{più forte} or
23 @qq{piano subito}). These can be produced using a @code{\\markup}
24 block.
25
26 "
27   doctitle = "Combining dynamics with markup texts"
28 } % begin verbatim
29
30
31 piuF = \markup { \italic più \dynamic f }
32 \layout { ragged-right = ##f }
33 \relative c'' {
34   c2\f c-\piuF
35 }
36
37