]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/topdocs/NEWS.texi
* SConstruct (symlink): Add dvips and music-drawing-routines.ps.
[lilypond.git] / Documentation / topdocs / NEWS.texi
1 \input texinfo @c -*-texinfo-*-
2 @setfilename NEWS.info
3 @settitle NEWS
4
5 @node Top, , , 
6 @top
7 @unnumbered New features in 2.3 since 2.2
8
9 @itemize @bullet
10
11 @item In the LilyPond  emacs mode, the @code{|} will now display the
12   current beat within the measure. 
13
14 @item Colliding notes are now correctly aligned relative to notes in other staves.
15
16 @item An experimental GNOME output backend is available for developers.
17 It depends on several unreleased packages such as gnome-guile TLA and
18 Pango CVS.  The output interface coverage is sparse, but it already
19 does support point-and-click on the GNOME Canvas.  See also
20 @file{scm/output-gnome.scm}.
21
22 @item Context definitions are now stored in identifiers that match the
23 context name, in other words, to modify a @code{Staff} context, the
24 following code may be used.
25
26 @example
27 \context @{
28   \Staff
29   .. 
30 @}
31 @end example
32
33 @item A new block, @code{\bookpaper} has been introduced to
34 hold settings for paper size and output scaling. Further options
35 include @code{raggedbottom} (if set, systems are not vertically filled
36 to reach the bottom of the page), and @code{raggedlastbottom}.
37
38
39
40 @item Support for fret diagrams  has been contributed by Carl
41 D. Sorensen. @file{input/test/fret-diagram.ly} contains an example.
42  
43 @item The @code{--safe-mode} has been revisited: GUILE evaluation
44 is done in the R5RS safe module, with only the basic @code{ly:}
45 interface available and malicious @TeX{} code is stopped.  However, to
46 be reasonably safe, you are advised to use the PostScript backend
47 rather than the @TeX{} backend anyway; and if possible use an UML
48 sandbox to run gs or latex.
49
50 @item Music syntax can now be extended seamlessly. As an example,
51 here is the new implementation @code{\applymusic},
52
53 @example
54   applymusic = #(ly:make-music-function
55      (list procedure? ly:music?) ; signature
56      (lambda (where func music)  ; the function
57        (func music)))
58 @end example
59
60 @item @code{\apply} has been renamed to @code{\applymusic}.
61
62 @item Music can be used as a markup.
63 When inserting a @code{score} block as part of a @code{\markup}, it
64 produces a rendered markup of the music.  An example is in
65 @file{input/test/markup-score.ly}.
66
67 @item LilyPond expressions can be embedded into Scheme. The syntax for
68 this is @code{#@{ ... #@}}. Within such a block, Scheme forms can be
69 introduced using a @code{$} character (@code{$$} results in a single
70 `$' character).  These forms are then inserted in the pattern.
71
72 @example
73 #(define (textoffset dx dy)
74    (ly:export
75      #@{ \override Voice.TextScript #'extra-offset = #(cons $dx $dy) #@}))
76
77 @{
78   c'^"normal text"
79   %% The following embedded scheme call is the same as
80   %% \override Voice.TextScript #'extra-offset = #(cons 2 -3)
81   #(textoffset 2 -3)
82   c'^"text with offset" 
83 @}
84 @end example
85
86 @item A music list at toplevel is interpreted as implicit @code{\score}
87 a @code{\score} block at toplevel is interpreted as an implicit
88 @code{\book} and @code{\notes} mode is the default lexer mode.  The
89 result is that
90
91 @example
92 \header @{ title = "The Title" @}
93 @{ a b c @}
94 @end example
95
96 is interpreted as
97
98 @example
99 \header @{ title = "The Title" @}
100 \book @{
101   \score @{
102     \notes @{ a b c @}
103   @}
104 @}    
105 @end example
106
107 This is handled by the function defined in
108 @code{toplevel-music-handler}.  Similarly, @code{\score} and
109 @code{\book} are handled by @code{toplevel-score-handler} and a
110 @code{toplevel-book-handler}.  By changing these variables, different
111 results can be obtained.
112
113
114 @item Start pitch for @code{relative} music is optional for music lists.
115 The default value is middle C.
116
117 @c update-me?  formal definition of newaddlyrics, once it works
118 @item Combining lyrics with music can be done with @code{\newlyrics}
119
120 @example
121     \relative @{
122         \clef bass
123         d2 d c4 bes a2 \break
124     @}
125     \newlyrics @{
126         My first Li -- ly song,
127     @}
128     \newlyrics @{
129         Not much can go wrong!
130     @}
131 @end example
132
133 Syntactically, @code{\newlyrics} acts like an infix operator.
134
135 @item The parser is encapsulated in a Scheme function
136 @code{ly:parse-file}, so the following fragment processes two files
137
138 @verbatim
139 #(ly:parse-file "another.ly")
140 \score { \notes { c4 }}
141 @end verbatim
142
143 @item The @code{font-encoding} property can now be used to select
144 differently encoded fonts. The previous default setting
145 @code{TeX-text} has been replaced by latin1. LilyPond requires the
146 @uref{http://www.lilypond.org/download/fonts/,ec-fonts-mftraced}
147 package installed to function properly.
148
149 @item The encoding of a file can be switched with
150 @code{\encoding}. The strings for markup texts are translated
151 automatically.
152
153 @item The toplevel block @code{\book} introduces page layout.
154 A @code{\book} groups @code{\score} blocks into one page layout
155 entity. For example, two scores are combined in one book with   
156
157 @example
158 \book @{
159      \score @{ ... @}
160      \score @{ ... @}
161 @}
162 @end example
163
164 Titling and page breaks are handled by LilyPond.  For automatic page
165 breaking, two algorithms are available, the classic ragged pages (the
166 default), and optimal page breaking.  
167 Page  breaks may be inserted manually with
168 @example
169   \pageBreak
170 @end example
171
172 @item
173 The @code{lilypond} program does not generate La@TeX{} titles or page
174 layout.  If you need La@TeX{} titles, you can use the
175 @code{lilypond-book} program.
176
177 @item There is now less of a noticeable ``hook'' at the end of a long slur.
178
179 @item The meaning of the @code{|} in the input can be redefined, by
180  assigning a music expression to @code{pipeSymbol}.
181  
182 @end itemize
183
184 @unnumbered New features in 2.2 since 2.0
185
186 @itemize @bullet
187
188 @item Setting @code{raggedlast = ##t} in the @code{\paper} block
189 causes the last line to be set flush-left instead of justified. 
190
191 @item The @code{Timing_engraver} now sets the @code{Timing} alias on
192 its containing context automatically.
193
194 @item The code for font selection has been rewritten. In addition to
195 existing font selection properties, the property @code{font-encoding}
196 has been added, which makes the switch between normal @code{text} and
197 other encodings like @code{braces}, @code{music} and @code{math}.
198
199 @item The pmx2ly script has been removed from the distribution.
200
201 @item Pedal brackets will now run to the last bar of a piece if they are not
202 explicitly ended.
203
204 @item Context definitions now use the word @code{\context} instead of @code{\translator}.
205
206 @item Property functions may be used as an argument to @code{set!},
207 for example
208
209 @example
210   (set! (ly:grob-property grob 'beam) ... )
211 @end example
212
213 @item In anticipation of Emacs 21.4 or 22.1, the info documentation contains
214 images.
215
216 @item Cue notes can be quoted directly from the parts that
217 contain them. This will take into account transposition of source and target
218 instrument. For example,
219
220 @verbatim
221 \addquote clarinet \notes\relative c' {
222   \transposition bes
223   fis4 fis fis fis
224 }
225
226 \score {
227     \notes \relative c'' {
228         c8 d8 \quote 2 oboe es8 gis  
229     }
230 }
231 @end verbatim
232
233 @item The transposition of an instrument can be specified using the
234 @code{\transposition} command.  An
235 E-flat alto saxophone is specified as 
236
237 @example
238   \transposition es'
239 @end example 
240
241 @item The naming of exported Scheme functions now follows Scheme conventions.
242 Changes be applied to Scheme files with 
243
244 @example
245         convert-ly -e -n --from=2.1.24 --to=2.1.26 *.scm 
246 @end example
247
248
249 @item Notes can  be excluded from auto-beaming, by  marking them with
250 @code{\noBeam}
251 @example
252   c8 c \noBeam c c 
253 @end example
254
255 @noindent
256 will print two separate eighth notes, and two beamed notes.
257
258 @item  Translators and contexts have been split. The result of this
259 internal cleanup is that @code{Score} no longer is the top context;
260 @code{Score} is contained in the @code{Global} context. Consequently,
261 it is possible to tweak @code{Score} as follows:
262
263 @example
264   \context Score \with @{
265     @dots{}
266   @}
267 @end example
268
269 @item The number of staff lines  in Tablature notation is now
270 automatically deduced from the @code{stringTunings} property.
271
272 @item The program reference has been cleaned up and revised.
273
274 @item The syntax for setting properties has been simplified:
275 the following table lists the differences:
276
277 @example
278       (old)                           (new)
279
280 \property A.B = #C                \set A.B = #C
281 \property A.B \unset              \unset A.B
282 \property A.B \set #C = #D        \override A.B #C = #D 
283 \property A.B \override #C = #D   (removed)
284 \property A.B \revert #C          \revert A.B #C
285 @end example
286
287 Furthermore, if @code{A} is left out, the bottommost context is used
288 by default.  In other words, it is no longer necessary to explicitly
289 mention @code{Voice}, @code{Lyrics} or @code{ChordNames}. 
290
291 Old:
292
293 @example
294    \property Voice.autoBeaming = ##f
295    \property Staff.TimeSignature \set #'style = #'C
296 @end example
297
298 New:
299
300 @example
301    \set autoBeaming = ##f
302    \override Staff.TimeSignature #'style = #'C
303 @end example
304
305
306 @item Tweaks  made with @code{\override} and @code{\revert} no longer
307 hide tweaks at higher context levels.
308
309 @item Melismata in lyrics are also properly handled  in the MIDI output.
310
311 @item The lilypond-book script has been rewritten.
312 It is shorter, cleaner and faster.  The special construct
313 @code{mbinclude} has been removed, plain @code{@@include} or
314 @code{\input} can be used now.
315
316 It now supports running convert-ly on the lilypond snippets,
317 @example
318     lilypond-book --filter='convert-ly --from=2.0.0' my-book.tely
319 @end example
320
321 @item The @code{LyricsVoice} context has been removed. Lyrics should only
322 be constructed in @code{Lyrics}.
323
324 @item The @code{Thread} context has been removed. Note heads and rests
325 are now constructed at @code{Voice} level.
326
327 @item  Harmonic notes can now be entered as
328
329 @example
330    <c' g''\harmonic>
331 @end example
332
333 @item Drum notation is now supported  as a regular feature:
334 percussion may be entered in @code{\drums} mode, and printed or
335 performed in a @code{DrumStaff} context:
336
337 @example
338   \score @{
339     \drums \new DrumStaff @{ hihat4 cowbell8 @}
340   @}
341 @end example
342
343 @item The automatic staff changer was internally rewritten. As a
344 result, the syntax has been simplified as well:
345
346 @example
347   \autochange @var{the-music}
348 @end example
349
350 @item The ergonomic syntax of @code{\markup} now has an equivalent in
351 Scheme. The @code{markup*} macro creates such objects; the following
352 two markup commands are equivalent:
353 @example
354  f4^#(markup* #:raise 0.2 #:bold "hi")
355  f4^\markup @{ \raise #0.2 \bold hi  @}
356 @end example
357
358 @item Voice names, for vocal lines, have been added. They are similar
359 to instrument names.   They can be set by defining @code{vocalName}
360 and @code{vocNam}.
361
362 @item Safe mode has been reinstated for lilypond.
363 When lilypond is invoked with @code{--safe-mode}, @TeX{} and
364 PostScript file output is disallowed, and lilypond-bin is invoked with
365 @code{--safe-mode}, the user's Guile expressions are evaluated in a
366 safe environment and file inclusion is not allowed.
367
368 Warning: this does not protect against denial-of-service attacks using
369 Guile, @TeX{} or PostScript.
370
371 (This feature is still experimental.)
372
373 @item There is now a Scheme macro for defining markup
374 commands. Special mark-up commands can be defined in user-files too.
375
376 @item Many fixes for dimension scaling have been made,
377 resulting in correct results for scores that mix staves in different
378 sizes.
379
380 @item Improved robustness when  layout properties are accidentally removed.  
381
382 @item A  more cleanly constructed part combiner has been installed.
383 It is more robust and less buggy. The part-combiner can be used with
384 @example
385   \partcombine @var{mus1} @var{mus2}
386 @end example
387
388 @noindent
389 See @file{input/regression/new-part-combine.ly} for an example.
390
391 @item Formatting of rehearsal marks has been improved. The @code{\mark}
392 command now only does automatic incrementing for marks specified as
393 integer. For example, @code{\mark #1} will print an A in the default
394 style.  See @file{input/regression/rehearsal-mark-letter.ly},
395 @file{input/regression/rehearsal-mark-number.ly}.
396
397 @item Formatting of ottava brackets has been much improved.
398
399 @item Objects in the output can now be documented: the following fragment
400  boxes the note head, and adds the text ``heads or tails?'' three
401 spaces below the box.
402
403 @example
404        \context Voice \applyoutput #(add-balloon-text
405                                      'NoteHead "heads, or tails?"
406                                      '(0 . -3))
407
408       
409        c8
410 @end example
411
412
413 @item Default staff sizes are now scalable. There are two new mechanisms for
414 setting staff sizes. Both are demonstrated in this fragment:
415
416 @example
417   #(set-global-staff-size 15)
418   \paper @{
419     #(paper-set-staff-size (* 15 pt))
420   @}   
421 @end example
422
423
424 @noindent
425 Both have the same effect on the global layout of a piece. Similarly,
426 the paper size may be changed as follows
427
428 @example
429   #(set-default-paper-size "a4")
430   \paper @{
431     #(set-paper-size "a4")
432   @}
433 @end example 
434
435
436 @item Warnings for bar check errors are more cleverly printed.  This
437 makes @code{barCheckSynchronize} superfluous, so it is now switched
438 off by default.
439
440 Warning: this will cause problems in scores that use bar checks to
441 shorten measures.
442
443 @item The black note head was made a little rounder, which causes a less
444  frantic graphic impression.
445
446 @item
447 A more concise syntax for checking octaves was introduced. A note may
448 be followed by @code{=}@var{quotes} which indicates what its absolute
449 octave should be.  In the following example, 
450
451 @example
452   \relative c'' @{ c='' b=' d,='' @}        
453 @end example
454
455 @noindent
456 the d will generate a warning, because a d'' is
457 expected, but a d' is found.
458 @c @code adds ` ', very confusing.
459
460 @item There is a new mechanism for putting lyrics to melodies.
461 With this mechanism, @code{Lyrics} lines can be put melodies
462 individually, allowing for different melismatic sections in every
463 @code{Lyrics}. See @file{input/regression/lyric-combine-new.ly}.
464
465 @item Bar lines may now be dotted.
466
467
468 @item The documentation now has links to a wiki, where everyone can
469 add personal comments to the manual.
470
471 @item Contexts may now be changed locally for an isolated music
472 expression. For example,
473   
474 @example
475   \new Voice \with @{
476      \consists "Pitch_squash_engraver"
477   @} @{
478     c'4
479   @}
480 @end example
481
482 @item The syntax for changing staffs has changed. The keyword
483 @code{\change} should now be used, e.g.
484
485 @example
486   \change Staff = up
487 @end example 
488
489 @item Features of spanner contexts, like @code{Staff}, can now be changed
490   using @code{\set}, eg.
491
492 @example
493   \new Staff @{
494        \override Staff.StaffSymbol #'line-count = #4
495        c'4
496   @} 
497 @end example
498
499 @noindent
500 puts a quarter note C on a staff with 4 lines.  
501
502
503 @item Multi measure rests are now truly centered between the
504 clefs/barlines of the staff, their position is independent of symbols
505 on the other staffs.
506
507 @item Collision resolution for dots in chords has been improved greatly. 
508
509 @item
510 Spacing following barlines was improved for widely stretched lines.
511
512 @item
513 Lyric hyphens and extenders now conform to standard typesetting
514 practice.
515
516 @item
517 Lyrics are now aligned under note heads conforming to engraving
518 standards. The responsible code has been rewritten, and is drastically
519 simpler from the previous version. To aid this rewrite, the syntactic
520 function of the extender line ( __ ) has been changed: it is now
521 attached to the lyric syllable.
522
523 @item
524 When redefining a context, the associated identifier is also
525 updated. For example, after reading 
526
527 @example
528  \translator @{
529         \ScoreContext
530         autoBeaming = ##f
531  @}
532 @end example
533
534 @noindent
535 the definition of @code{ScoreContext} is updated to include the changed
536 setting.
537
538
539 @item
540 The weight of the stafflines is now heavier at smaller staff sizes.
541 The font has been modified to match this look: at smaller sizes, the
542 font is heavier and the note heads are more rounded.
543
544 @item Processing scores is now done while parsing the file. New
545 Scheme functions give more flexibility: for example, it is now possible
546 interpret a score, collecting synchronized musical events in a list, and
547 manipulate that information using inline Scheme. For an example, see
548 @file{input/no-notation/recording.ly}.
549
550 @item Font sizes can now truly be scaled continuously: the  @code{font-size}
551 is similar to the old @code{font-relative-size}, but may be set to
552 fractional values; the closest design size will be scaled to achieve
553 the desired size. As a side-effect, there are now no longer
554 limitations in using smaller fonts (eg. grace notes) at small staff
555 sizes.
556
557 @item Stem tips are now also engraved with rounded corners.
558
559 @item
560 The placement of accidentals on chords and ledgered notes is improved.
561
562 @end itemize
563
564
565 @unnumbered New features in 2.0 since 1.8
566
567 @itemize
568
569 @item
570 Crescendos can now be drawn dotted or dashed.
571
572 @item
573 Quarter tones are now supported. They are entered by suffixing
574 @code{ih} for a half-sharp and @code{eh} for a half-flat. Hence, the
575 following is an ascending list of pitches:
576
577 @example
578   ceses ceseh ces ceh c cih cis cisih cisis
579 @end example
580
581 @item
582 The following constructs have been removed from the syntax:
583
584 @example
585   \duration #SCHEME-DURATION
586   \pitch #SCHEME-PITCH
587   \outputproperty @var{func} @var{symbol} = @var{value}
588 @end example
589
590 For @code{\outputproperty}, the following may be substituted:
591
592 @example
593    \applyoutput #(outputproperty-compatibility @var{func}
594                   @var{symbol} @var{value}) 
595 @end example 
596
597 @item
598 Clefs may now be transposed arbitrarily, for example
599
600 @example
601   \clef "G_8"
602   \clef "G_15"
603   \clef "G_9"
604 @end example
605
606
607 @item
608 The syntax for chords and simultaneous music have changed.
609 Chords are entered as
610
611 @example
612    <@var{pitches}>
613 @end example
614
615 while simultaneous music is entered as
616
617 @example
618    <<@var{..music list..}>>
619 @end example
620
621 In effect, the meanings of both have been swapped relative to their 1.8
622 definition.  The syntax for lists in @code{\markup} has changed
623 alongside, but figured bass mode was not  changed, i.e.:
624
625 @example
626   \markup @{ \center <@var{..list of markups..}> @}
627   \figure @{ <@var{figures}> @}
628 @end example
629
630 As chords the more often used than simultaneous music, this change will
631 save keystrokes.
632
633 @item
634 Each music expression can now be tagged, to make different printed
635 versions from the same music expression.  In the following example,
636 we see two versions of a piece of music, one for the full score, and
637 one with cue notes for the instrumental part:
638
639 @example
640 << \tag #'part <<
641      @{ c4 f2 g4 @}      % in the part, we have cue-notes  
642      \\ R1 >>
643   \tag #'score R1  % in the score: only a rest
644 >>
645 @end example
646  
647 The same can be applied to articulations, texts, etc.: they are
648 made by prepending
649
650 @example
651         -\tag #@var{your-tags} 
652 @end example
653
654 to an articulation, for example, 
655
656 @example
657         c4-\tag #'with-fingerings -4 -\tag #'with-strings \6
658 @end example
659
660 This defines a note, which has a conditional fingering and a
661 string-number indication.
662
663 @item
664 The settings for chord-fingering are more flexible. You can specify a
665 list where fingerings may be placed, eg.
666
667 @example
668         \property Voice.fingeringOrientations = #'(left down)
669 @end example
670
671 This will put the fingering for the lowest note below the chord, and the
672 rest to the left.
673
674 @item
675 The script previously known as @code{ly2dvi} has been renamed to
676 @code{lilypond}. The binary itself is now installed as
677 @code{lilypond-bin}.
678
679 @item
680 Markup text (ie. general text formatting) may now be used for lyrics too. 
681
682 @item
683 Two new commands for grace notes have been added, @code{\acciaccatura}
684 and @code{\appoggiatura},
685
686 @example
687   \appoggiatura f8 e4
688   \acciaccatura g8 f4
689 @end example
690
691 Both reflect the traditional meanings of acciaccatura and appogiatura,
692 and both insert insert a slur from the first grace note to the main
693 note.
694
695 @item 
696 Layout options for grace notes are now stored in a context property,
697 and may now be set separately from musical content.
698
699 @item
700 The @code{\new} command will create a context with a unique
701 name automatically. Hence, for multi-staff scores, it is no longer
702 necessary to invent arbitrary context names. For example, a two-staff
703 score may be created by
704
705 @example
706   \simultaneous @{
707     \new Staff @{ @var{notes for 1st staff} @}
708     \new Staff @{ @var{notes for 2nd staff} @}
709   @}
710 @end example
711
712
713
714 @item
715 Octave checks make octave errors easier to correct.
716 The syntax is 
717
718 @example
719   \octave @var{pitch}
720 @end example
721
722 This checks that @var{pitch} (without octave) yields @var{pitch} (with
723 octave) in \relative mode. If not, a warning is printed, and the
724 octave is corrected.
725
726 @item
727 All articulations must now be entered postfix. For example,
728
729 @example
730         c8[( d8]) 
731 @end example
732
733 @noindent
734 is a pair of beamed slurred eighth notes.
735
736 @item
737 The definition of @code{\relative} has been simplified.  Octaves are
738 now always propagated in the order that music is entered. In the
739 following example,  
740
741 @example
742   PRE
743   \repeat "unfold" 3  BODY \alternative @{ ALT1 ALT2 @}
744   POST
745 @end example
746
747 @noindent
748 the octave of BODY is based on PRE, the starting octave of ALT1 on
749 BODY, the starting octave of ALT2 on ALT1, and the starting octave of
750 POST on ALT2.
751
752 The same mechanism is used for all other music expressions, except the
753 chord. Backwards compatibility is retained through a special program option,
754 which is set through 
755
756 @example
757   #(ly:set-option 'old-relative)
758 @end example
759
760 @item
761 Windows users can double click a @code{.ly} file to process and view
762 it automagically through the new @code{lily-wins} frontend.
763
764 @end itemize
765
766
767
768
769 @unnumbered New features in 1.8 since 1.6
770
771 @itemize
772
773 @item 
774 The chord entry code has been completely rewritten. It is now
775 cleaner and more flexible.
776
777 @item 
778 A new syntax has been added for text entry.  This syntax is more
779 friendly than the old mechanism, and it is implemented in a more
780 robust and modular way. For more information, refer to the section on
781 "Text markup" in the notation manual.
782
783 @item 
784 The integration of the input language and Scheme has been made deeper:
785 you can now use LilyPond identifiers in Scheme, and use Scheme
786 expressions instead of LilyPond identifiers.
787
788 @item 
789 The internal representation of music has been cleaned up completely
790 and converted to Scheme data structures.  The representation may be
791 exported as XML.
792
793 @item 
794 A new uniform postfix syntax for articulation has been introduced.
795 A beamed slurred pair of eighth notes can be entered as
796
797 @example
798         c8-[-( d8-]-) 
799 @end example
800
801 In version 2.0, postfix syntax will be the only syntax
802 available, and the dashes will become optional.
803
804 This will simplify the language: all articulations can be entered as
805 postfix, in any order.
806
807 @item 
808 A new syntax has been added for chords:
809
810
811 @example
812         << PITCHES >>
813 @end example 
814
815 It is not necessary to update files to this syntax, but it will be for
816 using LilyPond version 2.0.  In version 2.0, this syntax will be
817 changed to
818
819 @example
820         < PITCHES >
821 @end example
822
823 for chords, and
824
825 @example
826         \simultaneous @{ .. @} 
827 @end example
828
829 for simultaneous music.
830
831 To convert your files from <PITCHES> to <<PITCHES>>, use the script
832 included in @file{buildscripts/convert-new-chords.py}.
833
834 This change was introduced for the following reasons
835
836 @itemize @bullet
837 @item
838 It solves the "start score with chord" problem, where you have to
839   state \context Voice explicitly when a chord was the start of a
840   Staff or Score.
841 @item
842 With the new syntax, it is possible to distinguish between
843   articulations (or fingerings) which are for a single chord note,
844   and which are for the entire chord. This allows for per-note
845   fingerings, and is more logical on the whole.
846 @end itemize
847
848 @item 
849 User code may now be executed during interpreting.  The syntax for
850 this code is
851
852 @example
853         \applycontext #SCHEME-FUNCTION
854 @end example
855
856 @item 
857 User code may now be executed on arbitrary grobs during interpreting.
858 The syntax for this feature is
859
860 @example
861         \applyoutput #SCHEME-FUNCTION
862 @end example
863
864 @noindent
865 SCHEME-FUNCTION takes a single argument, and is called for every grob
866 that is created in the current context.
867
868 @item 
869 New algorithms for chord-name formatting have been installed. They
870 can be tuned and have ergonomic syntax for entering exceptions.
871
872 @item 
873 Texts may now be put on multimeasure rests, e.g.
874
875 @example
876         R1*20^\markup @{ "GP" @}
877 @end example
878
879 @item
880 Ancient notation now prints ligatures in Gregorian square neumes
881 notation, roughly following the typographical style of the Liber
882 hymnarius of Solesmes, published in 1983.  Ligatures are still printed
883 without the proper line breaking and horizontal spacing.
884
885 @item 
886 Glissandi can now be printed using the zigzag style.
887
888 @item 
889 LilyPond can now print clusters. The syntax is
890
891 @example
892         \apply #notes-to-clusters @{ NOTE NOTE .. @}
893 @end example
894
895 @item
896 For irregular meters, beat grouping marks can be printed. The
897 syntax for this is
898
899 @example
900         #(set-time-signature 7 8 '(3 2 2))
901 @end example
902
903
904 @item 
905 Nested horizontal brackets for music analysis can now be printed:
906
907 @example
908         NOTE-\startGroup
909                 ..
910         NOTE-\stopGroup
911 @end example
912
913
914 @item  Ottava brackets are now fully supported as a feature.  The syntax
915 is
916
917 @example
918         #(set-octavation 1)
919 @end example
920
921
922 @item  Metronome markings are printed when a \tempo command is processed.
923
924
925
926 @item Fingerings can be put on chords horizontally.
927
928
929
930 @item  The appearance of various glyphs has been fine-tuned.
931
932
933
934 @item  Different types of percent style repeats may now be nested.
935
936
937
938 @item  The emacs support has been extended.
939
940
941 @item 
942 The manual has been completely revised and extended.
943
944 @end itemize
945
946 @unnumbered New features in 1.6 since 1.4
947
948
949 @itemize @bullet
950
951 @item
952 Support for figured bass and tablature.
953
954 @item
955 Completely rewritten beam formatting: provides much better output
956 now.
957
958
959 @item
960 Completely revised and improved music font.
961
962
963 @item
964 Completely rewritten MIDI import support.
965
966 @item
967 Completely rewritten grace note support. Practically speaking this
968 means that grace notes can be slurred to normal normal notes.
969
970
971 @item
972 Improved accidental handling and formatting: styles for producing
973 cautionaries may vary, and complex collisions between accidentals of a
974 chord are handled much better.
975
976 @item
977 Better spacing: both globally and locally. This includes subtle
978 details like optical stem spacing.
979
980 @item
981 More support for ancient notation: mensural ligatures, ambitus
982 (pitch range) of voices, more shapes, etc.
983
984 @item
985 More support for piano notation: bracket pedals, directed arpeggios,
986 arpeggio brackets.
987
988 @item
989 Easier music polyphonic music entry.
990
991 @item
992 More extensibility, many speedups and bugfixes
993
994 @item
995 The manual has been thoroughly revised.
996
997 @item
998 Development is now hosted at http://savannah.gnu.org, and sources
999 can be downloaded through anonymous CVS.
1000
1001 @item
1002 Support for windows: LilyPond is part of the cygwin distribution,
1003 which comes with a user-friendly installer.
1004
1005 @end itemize