From: Mats Bengtsson Date: Fri, 15 Feb 2008 15:54:24 +0000 (+0100) Subject: Clarify that break-align-anchor-alignment has to be set for X-Git-Tag: release/2.11.40-1~3^2~9 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=0ab66944d87b195562a6bb6746e39d94f2abf1f4;p=lilypond.git Clarify that break-align-anchor-alignment has to be set for all staves in a multi-stave score. --- diff --git a/Documentation/user/text.itely b/Documentation/user/text.itely index e5655241a9..94e53f4e6f 100644 --- a/Documentation/user/text.itely +++ b/Documentation/user/text.itely @@ -287,7 +287,8 @@ Possible symbols for the @code{break-align-symbols} list are The text marks will, by default, be aligned with the middle of the notation object, but this can be changed by overriding the @code{break-align-anchor-alignment} and @code{break-align-anchor} -properties for the appropriate grob. +properties for the appropriate grob. For scores with multiple staves, +this setting should be done for all the staves. @lilypond[fragment,quote,ragged-right,verbatim] { @@ -296,20 +297,20 @@ properties for the appropriate grob. \key cis \major % the RehearsalMark will be aligned with the left edge of the KeySignature - \once \override Staff.KeySignature #'break-align-anchor-alignment = #LEFT + \once \override Score.KeySignature #'break-align-anchor-alignment = #LEFT \mark \default cis1 \key ces \major % the RehearsalMark will be aligned with the right edge of the KeySignature - \once \override Staff.KeySignature #'break-align-anchor-alignment = #RIGHT + \once \override Score.KeySignature #'break-align-anchor-alignment = #RIGHT \mark \default ces1 \key cis \major % the RehearsalMark will be aligned with the left edge of the KeySignature % and then shifted right by 2 units. - \once \override Staff.KeySignature #'break-align-anchor = #2 + \once \override Score.KeySignature #'break-align-anchor = #2 \mark \default ces1 }