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