]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/combining-dynamics-with-markup-texts.ly
LSR: Update.
[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.4"
5
6 \header {
7   lsrtags = "expressive-marks, text"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
10   texidoces = "
11 Ciertas indicaciones dinámicas pueden llevar textos (como \"più
12 forte\" o \"piano subito\"). Se pueden producir usando un
13 bloque @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 \"più forte\" or
20 \"piano subito\"). They can be produced using a @code{\\markup} block.
21
22 "
23   doctitle = "Combining dynamics with markup texts"
24 } % begin verbatim
25
26 piuF = \markup { \italic più \dynamic f }
27 \layout { ragged-right = ##f }
28 \relative c'' {
29   c2\f c-\piuF
30 }
31
32