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