From: Graham Percival Date: Wed, 22 Mar 2006 06:28:35 +0000 (+0000) Subject: Minor fixes from mailist. Tested with 2.7.40; I'm not certain if you X-Git-Tag: release/2.9.0~16 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=7cdf77d855d24c4f4d446bb35db4da154bda4d46;p=lilypond.git Minor fixes from mailist. Tested with 2.7.40; I'm not certain if you want to include them in 2.8.0 or not. They're not particularly important, but OTOH they don't break anything. --- diff --git a/ChangeLog b/ChangeLog index 77c4bd8fb6..34f4155a15 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-03-22 Graham Percival + + * Documentation/user/advanced-notation.itely: minor fixes + from mailist. + 2006-03-22 Han-Wen Nienhuys * branch lilypond_2_8 diff --git a/Documentation/user/advanced-notation.itely b/Documentation/user/advanced-notation.itely index ce25eddca5..c4ae3e2173 100644 --- a/Documentation/user/advanced-notation.itely +++ b/Documentation/user/advanced-notation.itely @@ -216,6 +216,27 @@ bar lines, } @end lilypond +Although text marks are normally only printed above the topmost +staff, you may alter this to print them on every staff, + +@lilypond[quote,ragged-right,verbatim,relative=2] +{ + \new Score \with { + \remove "Mark_engraver" + } + << + \new Staff \with { + \consists "Mark_engraver" + } + { c''1 \mark "foo" c'' } + \new Staff \with { + \consists "Mark_engraver" + } + { c'1 \mark "foo" c' } + >> +} +@end lilypond + @seealso @@ -937,6 +958,25 @@ If you wish to center the instrument names, you must center all of them For longer instrument names, it may be useful to increase the @code{indent} setting in the @code{\layout} block. +To center instrument names while leaving extra space to the right, + +@lilypond[quote,verbatim,ragged-right] +\new StaffGroup \relative +<< + \new Staff { + \set Staff.instrument + = \markup { \hcenter-in #10 "blabla" } + c1 c1 + } + \new Staff { + \set Staff.instrument + = \markup { \hcenter-in #10 "blo" } + c1 c1 + } +>> +@end lilypond + + @seealso Program reference: @internalsref{InstrumentName}.