From d39a280b9183bcff1105ad0bffb4c76c523e1917 Mon Sep 17 00:00:00 2001 From: hanwen Date: Sun, 15 Sep 2002 11:50:23 +0000 Subject: [PATCH] patch by Graham Percival --- ChangeLog | 2 ++ Documentation/user/refman.itely | 35 +++++++++++++++++++++++++++++++++-- 2 files changed, 35 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index f1996ef337..8de9c87341 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2002-09-15 Han-Wen Nienhuys + * Documentation/user/refman.itely: patch by Graham Percival + * scripts/lilypond-book.py (make_pixmap): let gs write to outputfile directly diff --git a/Documentation/user/refman.itely b/Documentation/user/refman.itely index 8a9f16f6f3..5a3c9b057c 100644 --- a/Documentation/user/refman.itely +++ b/Documentation/user/refman.itely @@ -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 -- 2.11.4.GIT