]> git.donarmstrong.com Git - lilypond.git/commitdiff
Minor fixes from mailist. Tested with 2.7.40; I'm not certain if you
authorGraham Percival <graham@percival-music.ca>
Wed, 22 Mar 2006 06:28:35 +0000 (06:28 +0000)
committerGraham Percival <graham@percival-music.ca>
Wed, 22 Mar 2006 06:28:35 +0000 (06:28 +0000)
want to include them in 2.8.0 or not.  They're not particularly
important, but OTOH they don't break anything.

ChangeLog
Documentation/user/advanced-notation.itely

index 77c4bd8fb67cea25faed1bf6d99f99cf56cefa12..34f4155a15954482e8f6f7afe83d72bd3081ba3c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-03-22  Graham Percival  <gpermus@gmail.com>
+
+       * Documentation/user/advanced-notation.itely: minor fixes
+       from mailist.
+
 2006-03-22  Han-Wen Nienhuys  <hanwen@lilypond.org>
 
        * branch lilypond_2_8
index ce25eddca56df74990ef73c3cfd3094248d43019..c4ae3e21734930cbda87a7c5510ba43fa5ddb7a9 100644 (file)
@@ -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}.