]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/combining-dynamics-with-markup-texts.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[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.16.0"
8
9 \header {
10   lsrtags = "expressive-marks, really-simple, text"
11
12   texidoc = "
13 Some dynamics may involve text indications (such as @qq{più forte} or
14 @qq{piano subito}). These can be produced using a @code{\\markup}
15 block.
16
17 "
18   doctitle = "Combining dynamics with markup texts"
19 } % begin verbatim
20
21
22 piuF = \markup { \italic più \dynamic f }
23 \layout { ragged-right = ##f }
24 \relative c'' {
25   c2\f c-\piuF
26 }