From: Graham Percival Date: Mon, 31 Mar 2008 16:13:26 +0000 (-0700) Subject: Move "new dynamic marks" into expressive. X-Git-Tag: release/2.11.44-1~57^2~3 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=18c8f740f67e6063de22296054f78c6218f8d224;p=lilypond.git Move "new dynamic marks" into expressive. --- diff --git a/Documentation/user/expressive.itely b/Documentation/user/expressive.itely index 514a2d8cc2..b6b1d7e7e4 100644 --- a/Documentation/user/expressive.itely +++ b/Documentation/user/expressive.itely @@ -24,6 +24,7 @@ @menu * Articulations and ornamentations:: * Dynamics:: +* New dynamic marks:: @end menu @node Articulations and ornamentations @@ -364,6 +365,47 @@ Internals Reference: @internalsref{DynamicText}, handled by @internalsref{DynamicLineSpanner}. +@node New dynamic marks +@subsubsection New dynamic marks + +It is possible to print new dynamic marks or text that should be +aligned with dynamics. Use @code{make-dynamic-script} to create +these marks. Note that the dynamic font only contains the +characters @code{f,m,p,r,s} and @code{z}. + +Some situations (such as dynamic marks) have preset font-related +properties. If you are creating text in such situations, it is +advisable to cancel those properties with @code{normal-text}. See +@ref{Text markup commands}, for more details. + +@cindex make-dynamic-script + +@lilypond[quote,verbatim,ragged-right] +sfzp = #(make-dynamic-script "sfzp") +\relative c' { + c4 c c\sfzp c +} +@end lilypond + +@cindex Dynamics, editorial +@cindex Dynamics, parenthesis + +It is also possible to print dynamics in round parenthesis or +square brackets. These are often used for adding editorial +dynamics. + +@lilypond[quote,verbatim,ragged-right] +rndf = \markup{ \center-align {\line { \bold{\italic (} + \dynamic f \bold{\italic )} }} } +boxf = \markup{ \bracket { \dynamic f } } +{ c'1_\rndf c'1_\boxf } +@end lilypond + +@seealso + +Snippets: @lsrdir{Expressive,Expressive-marks} + + @node Curves @subsection Curves diff --git a/Documentation/user/text.itely b/Documentation/user/text.itely index 926e4b5c7c..e7e054c0f2 100644 --- a/Documentation/user/text.itely +++ b/Documentation/user/text.itely @@ -23,7 +23,6 @@ information, see @ref{Text encoding}.} @menu * Writing text:: * Text markup:: -* Special text concerns:: @end menu @@ -713,57 +712,3 @@ sans serif and monospaced text. For example, Snippets: @lsrdir{Text,Text} -@node Special text concerns -@subsection Special text concerns - -@c FIXME: this section is to be removed -@c (see comments below) -vv - -@menu -* New dynamic marks:: -@end menu - -@node New dynamic marks -@subsubsection New dynamic marks - -@c FIXME: this whole section should be removed and put in -@c "Writing text" -vv - -It is possible to print new dynamic marks or text that should be -aligned with dynamics. Use @code{make-dynamic-script} to create -these marks. Note that the dynamic font only contains the -characters @code{f,m,p,r,s} and @code{z}. - -Some situations (such as dynamic marks) have preset font-related -properties. If you are creating text in such situations, it is -advisable to cancel those properties with @code{normal-text}. See -@ref{Text markup commands}, for more details. - -@cindex make-dynamic-script - -@lilypond[quote,verbatim,ragged-right] -sfzp = #(make-dynamic-script "sfzp") -\relative c' { - c4 c c\sfzp c -} -@end lilypond - -@cindex Dynamics, editorial -@cindex Dynamics, parenthesis - -It is also possible to print dynamics in round parenthesis or -square brackets. These are often used for adding editorial -dynamics. - -@lilypond[quote,verbatim,ragged-right] -rndf = \markup{ \center-align {\line { \bold{\italic (} - \dynamic f \bold{\italic )} }} } -boxf = \markup{ \bracket { \dynamic f } } -{ c'1_\rndf c'1_\boxf } -@end lilypond - -@seealso - -Snippets: @lsrdir{Text,Text} - -