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