]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/creating-real-parenthesized-dynamics.ly
Merge branch 'lilypond/translation' of ssh://trettig@git.sv.gnu.org/srv/git/lilypond...
[lilypond.git] / input / lsr / creating-real-parenthesized-dynamics.ly
index 69ce5da881ad959b21d4030e57f7febfab7e9222..e86d21fd0645a627d182aae7a371b912d3d63805 100644 (file)
@@ -1,10 +1,11 @@
 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
 %% This file is in the public domain.
-\version "2.11.38"
+\version "2.11.49"
 
 \header {
   lsrtags = "expressive-marks, text"
- texidoc = "
+
+  texidoc = "
 Although the easiest way to add parentheses to a dynamic mark is to use
 a @code{\\markup} block, this method has a downside: the created
 objects will behave like text markups, and not like dynamics.
@@ -16,14 +17,16 @@ be regarded as a dynamic, and therefore will remain compatible with
 commands such as @code{\\dynamicUp} or @code{\\dynamicDown}.
 
 
-" }
-% begin verbatim
+
+"
+  doctitle = "Creating \"real\" parenthesized dynamics"
+} % begin verbatim
 \paper { ragged-right = ##t }
 
 parenF = #(make-dynamic-script (markup #:line (#:normal-text #:italic
-           #:fontsize 2 "(" #:hspace -0.8 #:dynamic "f" #:normal-text #:italic
-           #:fontsize 2 ")"
+           #:fontsize 2 "(" #:hspace -0.8 #:dynamic "f" #:normal-text
+           #:italic #:fontsize 2 ")"
           )))
-{
-  c''4\parenF c'' c'' \dynamicUp c''\parenF
+\relative c'' {
+  c4\parenF c c \dynamicUp c\parenF
 }