From: fred Date: Tue, 26 Mar 2002 22:24:32 +0000 (+0000) Subject: lilypond-1.1.67 X-Git-Tag: release/1.5.59~2215 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=781ead832050f5f5577e36dea8b8616de065bd9d;p=lilypond.git lilypond-1.1.67 --- diff --git a/NEWS b/NEWS index a07ce5738a..fd7f2aa6a1 100644 --- 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 diff --git a/ly/params.ly b/ly/params.ly index 1189cd97aa..12f1c34a3f 100644 --- a/ly/params.ly +++ b/ly/params.ly @@ -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";