From: gpercival <gpercival>
Date: Tue, 22 Nov 2005 06:50:33 +0000 (+0000)
Subject: Misc small changes.
X-Git-Tag: release/2.7.20~27
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=4a15d3035840beb22d0d0997a44c3a883d794d6c;p=lilypond.git

Misc small changes.
---

diff --git a/ChangeLog b/ChangeLog
index 204c919df5..931b47b197 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2005-11-22  Graham Percival  <gpermus@gmail.com>
+
+	* Documentation/user/basic-notation.itely: clarify dynamic
+	padding text.
+
+	* Documentation/user/advanced-notation.itely: add unicode
+	escape control example, whatever that is.  :)
+
+	* Documentation/user/global.itely: added "removing dynamics
+	from MIDI" code.
+
 2005-11-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
 	* VERSION (PATCH_LEVEL): release 2.7.18
diff --git a/Documentation/user/advanced-notation.itely b/Documentation/user/advanced-notation.itely
index 999fd931f3..95969c2503 100644
--- a/Documentation/user/advanced-notation.itely
+++ b/Documentation/user/advanced-notation.itely
@@ -378,6 +378,12 @@ Both @file{les-nereides.texstr} and @file{les-nereides.tex} need
 suitable LaTeX wrappers to load appropriate La@TeX{} packages for
 interpreting non-ASCII strings.
 
+To use a Unicode escape sequence, use
+
+@example
+#(ly:export (ly:wide-char->utf-8 #x2014))
+@end example
+
 
 @seealso
 
diff --git a/Documentation/user/basic-notation.itely b/Documentation/user/basic-notation.itely
index 1653738393..35da6b6bca 100644
--- a/Documentation/user/basic-notation.itely
+++ b/Documentation/user/basic-notation.itely
@@ -2180,9 +2180,12 @@ are aligned when they do not occur on the same note, you can
 increase the @code{staff-padding} property.
 
 @example
-\override DynamicLineSpanner #'staff-padding = 4
+\override DynamicLineSpanner #'staff-padding = #4
 @end example
 
+You may also use this property if the dynamics are colliding
+with other notation.
+
 
 @refcommands
 
diff --git a/Documentation/user/global.itely b/Documentation/user/global.itely
index 14bff658eb..1e8bc6c471 100644
--- a/Documentation/user/global.itely
+++ b/Documentation/user/global.itely
@@ -1266,6 +1266,20 @@ gives a basic equalizer control, which can enhance the quality of
 the MIDI output remarkably.  The equalizer can be controlled by
 setting @code{instrumentEqualizer}.
 
+To remove dynamics from the MIDI output, insert the following lines
+in the @code{\midi@{@}} section.
+
+@example
+\midi {
+  ...
+  \context {
+    \Voice
+    \remove "Dynamic_performer"
+    \remove "Span_dynamic_performer"
+  }
+}
+@end example
+
 
 @node MIDI block
 @subsection MIDI block