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