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