]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/combining-dynamics-with-markup-texts.ly
4590a98545e0f7f16fc4b2c97a5728e8889a6ef9
[lilypond.git] / Documentation / snippets / combining-dynamics-with-markup-texts.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.16"
5
6 \header {
7   lsrtags = "expressive-marks, text"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
10   texidoces = "
11 Ciertas indicaciones dinámicas pueden llevar textos (como @qq{più
12 forte} o @qq{piano subito}). Se pueden producir usando un bloque
13 @code{\\markup}.
14
15 "
16   doctitlees = "Combinar indicaciones dinámicas con marcados textuales"
17
18   texidoc = "
19 Some dynamics may involve text indications (such as @qq{più forte} or
20 @qq{piano subito}). These can be produced using a @code{\\markup}
21 block.
22
23 "
24   doctitle = "Combining dynamics with markup texts"
25 } % begin verbatim
26
27 piuF = \markup { \italic più \dynamic f }
28 \layout { ragged-right = ##f }
29 \relative c'' {
30   c2\f c-\piuF
31 }
32
33