]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/combining-dynamics-with-markup-texts.ly
lilypond-manuals.css: edit color scheme and some spacing
[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.di.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.18.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 piuF = \markup { \italic più \dynamic f }
22
23 \layout { ragged-right = ##f }
24
25 \relative c'' {
26   c2\f c-\piuF
27 }