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