]> git.donarmstrong.com Git - lilypond.git/commitdiff
Clarify that break-align-anchor-alignment has to be set for
authorMats Bengtsson <mats.bengtsson@s3.kth.se>
Fri, 15 Feb 2008 15:54:24 +0000 (16:54 +0100)
committerMats Bengtsson <mats.bengtsson@s3.kth.se>
Fri, 15 Feb 2008 15:54:24 +0000 (16:54 +0100)
all staves in a multi-stave score.

Documentation/user/text.itely

index e5655241a93393f3f4435d5e34d35845b0f0ca21..94e53f4e6faee9c9329f5e8a27c4340964883ecb 100644 (file)
@@ -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
 }