]> git.donarmstrong.com Git - lilypond.git/commitdiff
patch by Graham Percival
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 15 Sep 2002 11:50:23 +0000 (11:50 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 15 Sep 2002 11:50:23 +0000 (11:50 +0000)
ChangeLog
Documentation/user/refman.itely

index f1996ef337f570d97c2928a1da474a781fe8158d..8de9c8734129186c60d710b9fe862d463fada2a3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2002-09-15  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
 
+       * Documentation/user/refman.itely: patch by Graham Percival
+
        * scripts/lilypond-book.py (make_pixmap): let gs write to
        outputfile directly
 
index 8a9f16f6f364222e814964656d6b2ad1323a29e3..5a3c9b057c21c0318626c9c737f8bd4fb8472ad7 100644 (file)
@@ -9,7 +9,6 @@
 
 @macro refbugs
 @strong{BUGS}
-
 @end macro
 
 
@@ -1689,8 +1688,15 @@ respectively.
 @end lilypond
 
 Typographically, the phrasing slur behaves almost exactly like a normal
-slur. See also  @seeinternals{PhrasingSlur}.
+slur.  See also @seeinternals{PhrasingSlur}.  But although they behave
+similarily to normal slurs, phrasing slurs count as different objects.
+A @code{\slurUp} will have no effect on a phrasing slur; instead, you
+should use @code{\phrasingSlurUp}, @code{\phrasingSlurDown}, and
+@code{\phrasingSlurBoth}.
 
+Note that the commands
+@code{\slurUp}, @code{\slurDown}, and @code{\slurBoth} will only affect
+normal slurs and not phrasing slurs.
 
 @node Breath marks
 @subsection Breath marks
@@ -2017,6 +2023,31 @@ is to put the grace notes before a phantom ``space note'', e.g.
 }
 @end lilypond
 
+A @code{\grace} section has some default values, and LilyPond will
+use those default values unless you specify otherwise inside the
+@code{\grace} section.  For example, if you specify \slurUp
+@emph{before} your @code{\grace} section, a slur which starts inside
+the @code{\grace} won't be forced up, even if the slur ends outside
+of the @code{\grace}.  Note the difference between the first and
+second bars in this example:
+
+@lilypond[fragment,verbatim]
+\relative c'' \context Voice {
+    \slurUp
+    \grace {
+        a4 ( }
+    ) a4 a4 () a2
+    \slurBoth
+
+    \grace {
+        \slurUp
+        a4 ( }
+    ) a4 a4 () a2
+    \slurBoth
+
+}
+@end lilypond
+
 
 @refbugs