]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.1.67
authorfred <fred>
Tue, 26 Mar 2002 22:24:32 +0000 (22:24 +0000)
committerfred <fred>
Tue, 26 Mar 2002 22:24:32 +0000 (22:24 +0000)
NEWS
ly/params.ly

diff --git a/NEWS b/NEWS
index a07ce5738abaac163e55171cfc8492b0a36b7af7..fd7f2aa6a14521d4d5719fec870bac2a739ac6c9 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,19 @@
+pl 66.hwn1
+       - bf: chord mode unsigned '-' -> unsigned CHORD_MINUS (1 SR conflict).
+       - refman reedit.
+       - dotdown only when verticalDirection is set.
+       - bfs: abc2ly convertor (more or less) successfully converts
+movement 2 of Beethoven 7.
+       - \repeat "semi" -> \repeat "volta"
+       - all spacing params into paper vars.
+       - spacing before grace notes.
+       - warn if font not found.
+       - staccato dot / tenuto centering
+       - spacing for clefs.
+       - bf: Stem_staff_side::do_substitute_element_pointer ();
+       - new screenshot
+
+********
 pl 65.hwn1
        - refman updates
        - added \simultaneous { } , \sequential { } syntax, for
index 1189cd97aa6aba3853a884b6b3889ec31fcd896d..12f1c34a3f14920f5eeca0df0702d2bd7d27d6b3 100644 (file)
@@ -124,7 +124,7 @@ code(\interline / 5) by default.
 slur_x_gap = \interline / 5.0;
 slur_y_gap = 0.25 * \interline;
 slur_y_free = 0.75 * \interline;
-slur_x_minimum = 3.0 * \interline;
+slur_x_minimum = 1.5 * \interline;
 
 %{
 Like beams, slurs often aren't as steep as the notes they encompass.
@@ -145,7 +145,7 @@ slur_interstaff_snap_max_slope_change = 0.5;
 
 
 
-tie_x_minimum = \slur_x_minimum;
+tie_x_minimum = \interline + \slur_x_minimum;
 % OSU: tie gap == slur gap
 tie_x_gap = \slur_x_gap;
 tie_y_gap = 0.25 * \interline;
@@ -187,6 +187,15 @@ Maximum number of measures per line to try when using Gourlay
 method. Decreasing this greatly reduces computation time.  
 %}
 gourlay_maxmeasures = 10.;
+
+%{
+Gourlay is a better, TeX like algorithm for breaking lines.  Wordwrap is faster, but leaves
+really                      spaced                out                lines at the end
+%}
+
+Gourlay = 1.0;
+Wordwrap = 0.0;
+
 castingalgorithm = \Gourlay;
 
 %{ Ross. page 151 lists these values, but we think that thick lines
@@ -241,16 +250,38 @@ postBreakPadding = 0.0;
 stemSpacingCorrection = 0.5*\interline;
 
 
-% relative strength of space following  tprefatory matter, and inline clefs.
-non_musical_space_strength = 8.0; 
+%{
+ relative strength of space following breakable columns (eg. prefatory matter)
+ %}
+breakable_column_space_strength = 8.0; 
+
+% space after inline clefs and such get this much stretched
+decrease_nonmus_spacing_factor = 1.0 ;
+
+%{
+ space before musical columns (eg. taken by accidentals) get this much
+ stretched when they follow a musical column, in absence of grace notes.
+
+ 0.0 means no extra space (accidentals are ignored)
+%}
+musical_to_musical_left_spacing_factor = 0.4;
 
+%{
+ stretch space this much if there are grace notes before the column
+%}
+before_grace_spacing_factor = 1.2;
 
-%If columns do not have spacing information set, set it to this much
+%{
+If columns do not have spacing information set, set it to this much
+%}
 loose_column_distance = 2.0 * \interline;
 
 % if stem is on middle line, choose this direction.
 stem_default_neutral_direction = 1.0;
 
+% in interline
+articulation_script_padding_default = 1.0;
+
 \include "engraver.ly";