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