From 96d66954906c4994e8596c60a077aef793aee317 Mon Sep 17 00:00:00 2001 From: gpercival Date: Fri, 17 Mar 2006 18:26:26 +0000 Subject: [PATCH] Minor fixes from mailist. --- ChangeLog | 5 ++++ Documentation/user/examples.itely | 9 +++++-- Documentation/user/instrument-notation.itely | 26 +++++++++++++++++--- 3 files changed, 35 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1e4c10f95f..204397fff4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-03-17 Graham Percival + + * Documentation/user/ examples, instrument-notation: minor + fixes from mailist. + 2006-03-17 Han-Wen Nienhuys * Documentation/user/tutorial.itely (First steps): change example diff --git a/Documentation/user/examples.itely b/Documentation/user/examples.itely index 5536c54a51..d34303c758 100644 --- a/Documentation/user/examples.itely +++ b/Documentation/user/examples.itely @@ -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 diff --git a/Documentation/user/instrument-notation.itely b/Documentation/user/instrument-notation.itely index e3e3a17b19..8254fadbe4 100644 --- a/Documentation/user/instrument-notation.itely +++ b/Documentation/user/instrument-notation.itely @@ -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 -- 2.39.5