From: Han-Wen Nienhuys Date: Fri, 20 Jun 2003 18:02:16 +0000 (+0000) Subject: * input/regression/beam-funky.ly: add note about (disputed) X-Git-Tag: release/1.7.23~22 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f5402344a00114015897dd4bb6a2a959ee48c657;p=lilypond.git * input/regression/beam-funky.ly: add note about (disputed) correct beaming. * ly/engraver-init.ly (ScoreContext): put key-signature after staff-bar --- diff --git a/ChangeLog b/ChangeLog index d0d318b5c7..0b55a11a36 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2003-06-20 Han-Wen Nienhuys + + * input/regression/beam-funky.ly: add note about (disputed) + correct beaming. + + * ly/engraver-init.ly (ScoreContext): put key-signature after + staff-bar + + 2003-06-20 Graham Percival * input/test/ broken.ly lyric-phrasing.ly: deleted. diff --git a/NEWS b/NEWS index e90f60eb17..ba633a0582 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,5 @@ -New features in 1.7 since 1.6 +New features in 1.8 since 1.6 +============================= * INPUT @@ -18,7 +19,7 @@ LilyPond identifiers. << PITCHES >> This is in addition to the < MUSICS > syntax for simultaneous -music. Combined with this: uniform postfix syntax for articulations: +music. Combined with this is uniform postfix syntax for articulation: c8-[-( d8-]-) @@ -50,7 +51,6 @@ and ** Preliminary Sodipodi/SVG output - * NOTATION @@ -89,8 +89,22 @@ completely modular way. ** Metronome markings. +** Horizontal fingerings on chords. + +** Tuning of various font glyphs + +** Nested percent style repeats + +* OTHER + +** More advanced emacs support + +** Completely revised manual, tutorial, and examples section + + New features in 1.6 since 1.4 +============================= * Support for figured bass and tablature. diff --git a/input/regression/beam-funky.ly b/input/regression/beam-funky.ly index 65c5d223b9..cbd6aaac54 100644 --- a/input/regression/beam-funky.ly +++ b/input/regression/beam-funky.ly @@ -1,6 +1,11 @@ \version "1.7.18" \header { - texidoc = "Knee beaming. (funky)" + + texidoc = "Knee beaming, complex configurations. According to +Paul Roberts, the first stem of a beam determines the direction of the +beam, and as such the way that following (kneed) stems attach to the +beam. This is in disagreement with the current algorithm." + } \score { \notes @@ -30,4 +35,4 @@ \paper { raggedright = ##t} } -%% new-chords-done %% \ No newline at end of file +%% new-chords-done %% diff --git a/ly/engraver-init.ly b/ly/engraver-init.ly index c63c97c783..1207c714b1 100644 --- a/ly/engraver-init.ly +++ b/ly/engraver-init.ly @@ -480,11 +480,10 @@ ScoreContext = \translator { instrument-name left-edge ambitus - span-bar breathing-sign clef - key-signature staff-bar + key-signature time-signature custos ) diff --git a/scm/define-grobs.scm b/scm/define-grobs.scm index 30061f6801..702f5c424d 100644 --- a/scm/define-grobs.scm +++ b/scm/define-grobs.scm @@ -77,6 +77,7 @@ (time-signature . (extra-space . 0.75)) (custos . (minimum-space . 2.0)) (clef . (minimum-space . 1.0)) + (key-signature . (extra-space . 1.0)) (first-note . (extra-space . 1.3)) (right-edge . (extra-space . 0.0)) )) diff --git a/scm/lily.scm b/scm/lily.scm index 707a403c34..b38984f018 100644 --- a/scm/lily.scm +++ b/scm/lily.scm @@ -116,6 +116,8 @@ a) '())) +;; TODO: use the srfi-1 partition function. + ;; why -list suffix (see reduce-list) (define-public (filter-list pred? list) "return that part of LIST for which PRED is true.