From: James Lowe Date: Mon, 15 Mar 2010 23:17:55 +0000 (+0000) Subject: Doc: NR added rehearsal mark format commands X-Git-Tag: release/2.13.17-1~64 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f6038f0beee3dfe01a0d202acc3c937ef5ee7a22;p=lilypond.git Doc: NR added rehearsal mark format commands Showed example on how to get letter 'I' in rehearsal mark. Moved some text around so that the user works through how /mark /default is incremented automaticallym then how to force the value of the /default and then how to get the letter 'I'. All using same example. --- diff --git a/Documentation/notation/rhythms.itely b/Documentation/notation/rhythms.itely index 889daf4da3..33f1272ef4 100644 --- a/Documentation/notation/rhythms.itely +++ b/Documentation/notation/rhythms.itely @@ -2414,6 +2414,19 @@ Snippets: To print a rehearsal mark, use the @code{\mark} command. +@lilypond[quote,verbatim,relative=2] +c1 \mark \default +c1 \mark \default +c1 \mark \default +c1 \mark \default +@end lilypond + +@noindent +The mark is incremented automatically if you use @code{\mark +\default}, but you can also use an integer argument to set the +mark manually. The value to use is stored in the property +@code{rehearsalMark}. + @lilypond[quote,verbatim,relative=2] c1 \mark \default c1 \mark \default @@ -2424,16 +2437,25 @@ c1 \mark \default @noindent The letter@tie{}@q{I} is skipped in accordance with engraving -traditions. If you wish to include the letter @q{I}, then use +traditions. If you wish to include the letter @q{I}, then use one +of the following commands, depending on which style of rehearsal mark +you want (letters only, letters in a hollow box, or letters in a +hollow circle). @example \set Score.markFormatter = #format-mark-alphabet +\set Score.markFormatter = #format-mark-box-alphabet +\set Score.markFormatter = #format-mark-circle-alphabet @end example -The mark is incremented automatically if you use @code{\mark -\default}, but you can also use an integer argument to set the -mark manually. The value to use is stored in the property -@code{rehearsalMark}. +@lilypond[quote,verbatim,relative=2] +\set Score.markFormatter = #format-mark-box-alphabet +c1 \mark \default +c1 \mark \default +c1 \mark #8 +c1 \mark \default +c1 \mark \default +@end lilypond @cindex rehearsal mark format @cindex rehearsal mark style