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