]> git.donarmstrong.com Git - lilypond.git/commitdiff
* input/regression/beam-funky.ly: add note about (disputed)
authorhanwen <hanwen>
Fri, 20 Jun 2003 18:02:16 +0000 (18:02 +0000)
committerhanwen <hanwen>
Fri, 20 Jun 2003 18:02:16 +0000 (18:02 +0000)
correct beaming.

* ly/engraver-init.ly (ScoreContext): put key-signature after
staff-bar

ChangeLog
NEWS
input/regression/beam-funky.ly
ly/engraver-init.ly
scm/define-grobs.scm
scm/lily.scm

index d0d318b5c796348caeb6c860fbe06082f747f0fc..0b55a11a3611c1943aab6df0d791f32108d492da 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2003-06-20  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
+
+       * 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  <gperlist@shaw.ca>
 
        * input/test/ broken.ly lyric-phrasing.ly: deleted.
diff --git a/NEWS b/NEWS
index e90f60eb17f83cd576f49c5e84db1473e03e85d7..ba633a0582ded989135aa505803e6e8b44473b4a 100644 (file)
--- 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.
 
index 65c5d223b9c27b305a4db8966d298784187fe979..cbd6aaac5483f3b165077c6d1ae893971da21b2d 100644 (file)
@@ -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 %%
index c63c97c783a9cca2eb0be06723c79fea8c25ad99..1207c714b1a39ba5f141cba6f76e7468d1c98474 100644 (file)
@@ -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
        )
index 30061f6801ee9d256e3329158097251c62e2a88d..702f5c424d3d982f7f1221f10fa162ebeace9aec 100644 (file)
@@ -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))
                        ))
index 707a403c34b8f70e17b3c7e9385c31e2c15a9c88..b38984f018d8ca8f93b0a7d749dc575ec3e7c0b1 100644 (file)
          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.