]> git.donarmstrong.com Git - lilypond.git/commitdiff
* ly/gregorian-init.ly (neumeDemoPaper): remove duplication from
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 30 Jul 2004 12:45:49 +0000 (12:45 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 30 Jul 2004 12:45:49 +0000 (12:45 +0000)
manual.

* Documentation/user/tutorial.itely (Integrating text and music):
remove \score and \notes from manual.

ChangeLog
Documentation/topdocs/NEWS.texi
Documentation/user/tutorial.itely
input/regression/molecule-hacking.ly

index b3f5956cd0596dfc8dbe035123bbdb6093f0869a..c77c8f1a7f4bd117fa33aed39fa9914dbca6adfa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2004-07-30  Han-Wen Nienhuys   <hanwen@xs4all.nl>
 
+       * VERSION: 2.3.9 released.
+
+       * scripts/convert-ly.py (conv): remove \lyrics from \lyricsto.
+
        * ly/gregorian-init.ly (neumeDemoPaper): remove duplication from
        manual.
 
@@ -65,7 +69,6 @@
 2004-07-27  Heikki Junes  <hjunes@cc.hut.fi>
 
        * input/regression/{stanza-number,volta-multi-staff}.ly: fix docs.
-m
  
 2004-07-26  Han-Wen Nienhuys   <hanwen@xs4all.nl>
 
index ee8318c2b3506091d12200db274c3fe3b22f6c1a..3725900b0cee977f8aede66ad5f5c16693988388 100644 (file)
@@ -7,9 +7,11 @@
 @unnumbered New features in 2.3 since 2.2
 
 @itemize @bullet
-@item The melody  for a @code{\lyricsto} text can be changed during a melody.
+@item The melody  for a @code{\lyricsto} text can be changed during a
+melody by setting the @code{associatedVoice} property.
 
-@item The @code{\lyricsto} keyword now automatically sets @code{\lyrics}.
+@item The @code{\lyricsto} keyword now automatically switches on
+@code{\lyrics} mode.
 
 @item The LilyPond binary  now supports output options
 @code{--dvi} @code{--png} @code{--ps} @code{--pdf} and
index 486ad980a8bad92e14e858266643654f1efdc892..0f036e26d130d2cd254d6733e0e6de6ee59374e8 100644 (file)
@@ -278,8 +278,9 @@ printing.
 @cindex DVI driver
 } which you can print or with the standard facilities of your
 operating system.@footnote{If your system does not have any tools
-installed, you can try @uref{http://www.cs.wisc.edu/~ghost/,Ghostscript}, a freely available package for
-viewing and printing PDF and PostScript files.}
+installed, you can try
+@uref{http://www.cs.wisc.edu/~ghost/,Ghostscript}, a freely available
+package for viewing and printing PDF and PostScript files.}
 
 On Windows, start up a text-editor@footnote{Any simple or
 programmer-oriented editor will do, for example Notepad.  Do not use a
index 853479e47a83742b7901a36fbed27475541594a5..06c8597b27dcdbad4c89f922405f8f45f3a9f811 100644 (file)
@@ -28,16 +28,14 @@ Example usage:
 GROB.  The dimensions of the stencil is not affected.
 "
      
-     (let* (
-           (fn (ly:get-default-font grob))
+     (let* ((fn (ly:get-default-font grob))
            (pclose (ly:find-glyph-by-name fn "accidentals-rightparen"))
            (popen (ly:find-glyph-by-name fn "accidentals-leftparen"))
            (subject (callback grob))
 
            ; remember old size
            (subject-dim-x (ly:stencil-extent subject 0))
-           (subject-dim-y (ly:stencil-extent subject 1))
-       )
+           (subject-dim-y (ly:stencil-extent subject 1)))
 
         ; add parens
         (set! subject
@@ -48,31 +46,26 @@ GROB.  The dimensions of the stencil is not affected.
        ; revert old size.
        (ly:stencil-set-extent! subject 0 subject-dim-x)
        (ly:stencil-set-extent! subject 1 subject-dim-y)
-       subject
-    )
-     )
-   parenthesize-stencil
-   )
+       subject))
+   parenthesize-stencil)
     
 
+\paper { raggedright = ##t }
+\relative c' {
+    c4 e
 
-\score {
-        \relative c' { c4 e
+    \override NoteHead  #'print-function
+    =
+    #(parenthesize-callback Note_head::print)
+    g bes
+    \revert NoteHead #'print-function
+    \override Beam  #'print-function
+    =
+    #(parenthesize-callback Beam::print)
 
-                   \override NoteHead  #'print-function
-                  =
-                     #(parenthesize-callback Note_head::print)
-                   g bes
-                   \revert NoteHead #'print-function
-                   \override Beam  #'print-function
-                  =
-                     #(parenthesize-callback Beam::print)
-
-                   a8 gis8 a2.
-                   
-                   }
+    a8 gis8 a2.
+    
+}
 
-       \paper { raggedright = ##t}
-       }