]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/combining-dynamics-with-markup-texts.ly
c1363f11bfa66a915c9336f90558b3a239168739
[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.39"
5
6 \header {
7   lsrtags = "expressive-marks, text"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
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