From: hanwen Date: Fri, 30 Jul 2004 12:45:49 +0000 (+0000) Subject: * ly/gregorian-init.ly (neumeDemoPaper): remove duplication from X-Git-Tag: release/2.3.9~2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=7e5b49dc732a651ddbe169730cd5fbd632982e0e;p=lilypond.git * ly/gregorian-init.ly (neumeDemoPaper): remove duplication from manual. * Documentation/user/tutorial.itely (Integrating text and music): remove \score and \notes from manual. --- diff --git a/ChangeLog b/ChangeLog index b3f5956cd0..c77c8f1a7f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2004-07-30 Han-Wen Nienhuys + * 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 * input/regression/{stanza-number,volta-multi-staff}.ly: fix docs. -m 2004-07-26 Han-Wen Nienhuys diff --git a/Documentation/topdocs/NEWS.texi b/Documentation/topdocs/NEWS.texi index ee8318c2b3..3725900b0c 100644 --- a/Documentation/topdocs/NEWS.texi +++ b/Documentation/topdocs/NEWS.texi @@ -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 diff --git a/Documentation/user/tutorial.itely b/Documentation/user/tutorial.itely index 486ad980a8..0f036e26d1 100644 --- a/Documentation/user/tutorial.itely +++ b/Documentation/user/tutorial.itely @@ -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 diff --git a/input/regression/molecule-hacking.ly b/input/regression/molecule-hacking.ly index 853479e47a..06c8597b27 100644 --- a/input/regression/molecule-hacking.ly +++ b/input/regression/molecule-hacking.ly @@ -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} - }