]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/combining-dynamics-with-markup-texts.ly
Merge branch 'master' of git://git.sv.gnu.org/lilypond.git into td-lily
[lilypond.git] / input / lsr / combining-dynamics-with-markup-texts.ly
index ed927bf6bd8afb73365b60dd894c0ad216594fe9..78f79ef308ad5837dd5bc51fad1986ba8ac6438c 100644 (file)
@@ -4,18 +4,17 @@
 
 \header {
   lsrtags = "expressive-marks, text"
- texidoc = "
-Some dynamics may involve text indications (such as \"più forte\",
-\"piano subito\", etc.). They can be produced using a @code{\\markup}
-block.
-" }
-% begin verbatim
-\layout { ragged-right = ##t }
 
-piuf = \markup { \italic "più" \dynamic "f" }
+  texidoc = "
+Some dynamics may involve text indications (such as \"più forte\" or
+\"piano subito\"). They can be produced using a @code{\\markup} block.
+
+"
+  doctitle = "Combining dynamics with markup texts"
+} % begin verbatim
+piuF = \markup { \italic "più" \dynamic "f" }
 
 \relative c'' {
-  c2
-  c-\piuf
+  c2\f c-\piuF
 }