]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/combining-dynamics-with-markup-texts.ly
Merge branch 'master' of git://git.savannah.gnu.org/lilypond.git
[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.0"
8
9 \header {
10   lsrtags = "expressive-marks, text"
11
12 %% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
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 piuF = \markup { \italic più \dynamic f }
31 \layout { ragged-right = ##f }
32 \relative c'' {
33   c2\f c-\piuF
34 }
35
36