]> git.donarmstrong.com Git - lilypond.git/commitdiff
Minor fixes from mailist.
authorGraham Percival <graham@percival-music.ca>
Fri, 17 Mar 2006 18:26:26 +0000 (18:26 +0000)
committerGraham Percival <graham@percival-music.ca>
Fri, 17 Mar 2006 18:26:26 +0000 (18:26 +0000)
ChangeLog
Documentation/user/examples.itely
Documentation/user/instrument-notation.itely

index 1e4c10f95f53209e3aa7cfd8059c6e333cd97b05..204397fff48fbc0f7457c53f1a5259d63f9dcf10 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-03-17  Graham Percival  <gpermus@gmail.com>
+
+       * Documentation/user/ examples, instrument-notation: minor
+       fixes from mailist.
+
 2006-03-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
        * Documentation/user/tutorial.itely (First steps): change example
index 5536c54a515e35896225ce57950ca55464ad36b5..d34303c758684c23a439f5083be0459ffe05532b 100644 (file)
@@ -1291,7 +1291,7 @@ violin concerto as TchaikovskyPI, whereas perhaps you wish to print
 }
 @end lilypond
 
-@subsection Gregorian template
+@subsection Gregorian transcription template
 
 This example demonstrates how to do modern transcriptions of Gregorian
 music.  Gregorian music has no measure, no stems; it uses only half and
@@ -1314,7 +1314,12 @@ chant = \relative c' {
 }
 \score {
   \chant
-  \layout{ }
+  \layout{
+    \context {
+      \Staff
+      \remove "Time_signature_engraver"
+    }
+  }
   \midi { \tempo 4=60 }
 }
 @end lilypond
index e3e3a17b19791d41ddfa5466c0fc808fa27c9434..8254fadbe4ad2bf4352cb44a83df2b32d4b5216e 100644 (file)
@@ -1246,13 +1246,13 @@ set @code{melismaBusyProperties}, as is done in the example above.
 @cindex Spacing lyrics
 @cindex Lyrics, increasing space between
 
-To increase the space between lyrics, use the @code{SeparationItem}
-property.
+To increase the spacing between lyrics, set the minimum-distance property of
+LyricSpace.
 
 @lilypond[relative,verbatim,fragment,quote,ragged-right]
 { 
   c c c c
-  \override Score.SeparationItem #'padding = #5
+  \override Lyrics.LyricSpace #'minimum-distance = #1.0
   c c c c
 }
 \addlyrics {
@@ -1261,6 +1261,26 @@ property.
 }
 @end lilypond
 
+To make this change for all lyrics in the score, set the property in the layout.
+
+@lilypond[relative,verbatim,quote,ragged-right]
+\score {
+  {
+  c c c c
+  c c c c
+  }
+  \addlyrics {
+  longtext longtext longtext longtext
+  longtext longtext longtext longtext
+  }
+  \layout {
+    \context {
+      \Lyrics
+      \override LyricSpace #'minimum-distance = #1.0
+    }
+  }
+}
+@end lilypond
 
 
 @node More stanzas