]> git.donarmstrong.com Git - lilypond.git/commitdiff
LSR: update.
authorGraham Percival <graham@percival-music.ca>
Fri, 18 Jan 2008 05:08:46 +0000 (21:08 -0800)
committerGraham Percival <graham@percival-music.ca>
Fri, 18 Jan 2008 05:08:46 +0000 (21:08 -0800)
input/lsr/ambiti-multiple-voices.ly
input/lsr/non-traditional-key-signatures.ly
input/lsr/preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly

index 7980ae7842e47c8dc225b53a5175141553ddc59a..34abf48180fabbc39d9a9a8d2a28a3a542622ce8 100644 (file)
@@ -7,13 +7,7 @@
 If you have multiple voices in a single staff and you want a single
 ambitus per staff rather than per voice, add the
 @code{Ambitus_engraver} to the @code{Staff} context rather than to the
-@code{Voice} context. Therefore, in this example, one need to use
-
-@code{\\override Staff.Ambitus #'X-offset = #-1.0}
-
-to move the ambitus to the left.  The same effect could also have been
-achieved with @code{extra-offset}, but then the formatting system would
-not reserve space for the moved object. 
+@code{Voice} context.
 " }
 % begin verbatim
 \new Staff \with {
@@ -21,6 +15,7 @@ not reserve space for the moved object.
   }
 <<
   \new Voice \relative c'' {
+      % eliminates collision
       \override Staff.Ambitus #'X-offset = #-1.0
       \voiceOne
       c4 a d e f1
index 6464006a41ae456f4e9bbade7f6a34f1460afcec..df5a0713d5590e5db401a87986146cc56e7e5b59 100644 (file)
@@ -24,10 +24,8 @@ whole-tone scale:
 " }
 % begin verbatim
 \relative c' {
-           \new Staff {
-             \set Staff.keySignature =
-               #`(((0 .  3) . ,SHARP) ((0 . 5) . ,FLAT) ((0 . 6) . ,FLAT))
-             c d e fis aes bes c2
-           }
-         }
+  \set Staff.keySignature =
+    #`(((0 .  3) . ,SHARP) ((0 . 5) . ,FLAT) ((0 . 6) . ,FLAT))
+  c d e fis aes bes c2
+}
 
index edb330d0bb0aaef8bc46879acce0f09c1467b4d7..940713687e7c440210a8b07399086e0f31360535 100644 (file)
@@ -11,13 +11,13 @@ the Staff context.
 " }
 % begin verbatim
 \relative {
-\key d \major
-a b cis d
-\key g \minor
-a bes c d
-\set Staff.printKeyCancellation = ##f
-\key d \major
-a b cis d
-\key g \minor
-a bes c d
+  \key d \major
+  a b cis d
+  \key g \minor
+  a bes c d
+  \set Staff.printKeyCancellation = ##f
+  \key d \major
+  a b cis d
+  \key g \minor
+  a bes c d
 }