release commit
[lilypond.git] / Documentation / topdocs / NEWS.texi
blob349eebd549621b8cba281a915861461601d686ff
1 \input texinfo @c -*-texinfo-*-
2 @setfilename NEWS.info
3 @settitle NEWS
5 @node Top, , , 
6 @top
8 @chapter New features in 2.1 since 2.0
10 @ignore
11 Unreleased:
13 @itemize
14 @end itemize
16 Version 2.1.13
17 @end ignore
19 @itemize @bullet
21 @item The program reference has been cleaned up and revised.
23 @item The syntax for setting properties has been simplified:
24 the following table lists the differences:
26 @example
27       (old)                           (new)
29 \property A.B = #C                \set A.B = #C
30 \property A.B \unset              \unset A.B
31 \property A.B \set #C = #D        \override A.B #C = #D 
32 \property A.B \override #C = #D   (removed)
33 \property A.B \revert #C          \revert A.B #C
34 @end example
36 Furthermore, if @code{A} is left out, the bottommost context is used
37 by default.  In other words, it is no longer necessary to explicitly
38 mention @code{Voice}, @code{Lyrics} or @code{ChordNames}. 
40 Old:
42 @example
43    \property Voice.autoBeaming = ##f
44    \property Staff.TimeSignature \set #'style = #'C
45 @end example
47 New:
49 @example
50    \set autoBeaming = ##f
51    \override Staff.TimeSignature #'style = #'C
52 @end example
55 @item Tweaks  made with @code{\override} and @code{\revert} no longer
56 hide tweaks at higher context levels.
58 @item Melismata in lyrics are also properly handled  in the MIDI output.
60 @item The lilypond-book script has been rewritten.
61 It is shorter, cleaner and faster.  The special construct
62 @code{mbinclude} has been removed, plain @code{@@include} or
63 @code{\input} can be used now.
65 @ignore
66 It now supports
67 running convert-ly on the lilypond snippets like so:
68 @example
69     lilypond-book --filter='convert-ly --from=2.0.0' my-book.tely
70 @end example
71 @end ignore
73 @item The @code{LyricsVoice} context has been removed. Lyrics should only
74 be constructed in @code{Lyrics}.
76 @item The @code{Thread} context has been removed. Note heads and rests
77 are now constructed at @code{Voice} level.
79 @item  Harmonic notes can now be entered as
81 @example
82    <c' g''\harmonic>
83 @end example
85 @item Drum notation is now supported  as a regular feature:
86 percussion may be entered in @code{\drums} mode, and printed or
87 performed in a @code{DrumStaff} context:
89 @example
90   \score @{
91     \drums \new DrumStaff @{ hihat4 cowbell8 @}
92   @}
93 @end example
95 @item The automatic staff changer was internally rewritten. As a
96 result, the syntax has been simplified as well:
98 @example
99   \autochange @var{the music}
100 @end example
102 @item The ergonomic syntax of @code{\markup} now has an equivalent in
103 Scheme. The @code{markup*} macro creates such objects; the following
104 two markup commands are equivalent:
105 @example
106  f4^#(markup* #:raise 0.2 #:bold "hi")
107  f4^\markup @{ \raise #0.2 \bold hi  @}
108 @end example
110 @item Voice names, for vocal lines, have been added. They are similar
111 to instrument names.   They can be set by defining @code{vocalName}
112 and @code{vocNam}.
114 @item Safe mode has been reinstated for lilypond.
115 When lilypond is invoked with @code{--safe-mode}, @TeX{} and
116 PostScript file output is disallowed, and lilypond-bin is invoked with
117 @code{--safe-mode}, the user's Guile expressions are evaluated in a
118 safe environment and file inclusion is not allowed.
120 Warning: this does not protect against denial-of-service attacks using
121 Guile, @TeX{} or PostScript.
123 (This feature is still experimental.)
125 @item There is now a Scheme macro for defining markup
126 commands. Special mark-up commands can be defined in user-files too.
128 @item Many fixes for dimension scaling have been made,
129 resulting in correct results for scores that mix staves in different
130 sizes.
132 @item Improved robustness when  layout properties are accidentally removed.  
134 @item A  more cleanly constructed part combiner has been installed.
135 It is more robust and less buggy. The part-combiner can be used with
136 @example
137   \partcombine @var{mus1} @var{mus2}
138 @end example
140 @noindent
141 See @file{input/regression/new-part-combine.ly} for an example.
143 @item Formatting of rehearsal marks has been improved. The @code{\mark}
144 command now only does automatic incrementing for marks specified as
145 integer. For example, @code{\mark #1} will print an A in the default
146 style.  See @file{input/regression/rehearsal-mark-letter.ly},
147 @file{input/regression/rehearsal-mark-number.ly}.
149 @item Formatting of ottava brackets has been much improved.
151 @item Objects in the output can now be documented: the following fragment
152  boxes the note head, and adds the text ``heads or tails?'' three
153 spaces below the box.
155 @example
156        \context Voice \applyoutput #(add-balloon-text
157                                      'NoteHead "heads, or tails?"
158                                      '(0 . -3))
160       
161        c8
162 @end example
165 @item Default staff sizes are now scalable. There are two new mechanisms for
166 setting staff sizes. Both are demonstrated in this fragment:
168 @example
169   #(set-global-staff-size 15)
170   \paper @{
171     #(paper-set-staff-size (* 15 pt))
172   @}   
173 @end example
176 @noindent
177 Both have the same effect on the global layout of a piece. Similarly,
178 the paper size may be changed as follows
180 @example
181   #(set-paper-size "a4")
182 @end example 
185 @item Warnings for bar check errors are more cleverly printed.  This
186 makes @code{barCheckSynchronize} superfluous, so it is now switched
187 off by default.
189 Warning: this will cause problems in scores that use bar checks to
190 shorten measures.
192 @item The black note head was made a little rounder, which causes a less
193  frantic graphic impression.
195 @item
196 A more concise syntax for checking octaves was introduced. A note may
197 be followed by @code{=}@var{quotes} which indicates what its absolute
198 octave should be.  In the following example, 
200 @example
201   \relative c'' @{ c='' b=' d,='' @}        
202 @end example
204 @noindent
205 the d will generate a warning, because a d'' is
206 expected, but a d' is found.
207 @c @code adds ` ' very confusing.
209 @item There is a new mechanism for putting lyrics to melodies.
210 With this mechanism, @code{LyricVoice}s can be put melodies
211 individually, allowing for different melismatic sections in every
212 @code{LyricVoice}. See @file{input/regression/lyric-combine-new.ly}.
214 @item Bar lines may now be dotted.
217 @item The documentation now has links to a wiki, where everyone can
218 add personal comments to the manual.
220 @item Contexts may now be changed locally for an isolated music
221 expression. For example,
222   
223 @example
224   \new Voice \with @{
225      \consists "Pitch_squash_engraver"
226   @} @{
227     c'4
228   @}
229 @end example
231 @item The syntax for changing staffs has changed. The keyword
232 @code{\change} should now be used, e.g.
234 @example
235   \change Staff = up
236 @end example 
238 @item Features of spanner contexts, like @code{Staff}, can now be changed
239   using @code{\property}, eg.
241 @example
242   \new Staff @{
243        \property Staff.StaffSymbol \set #'line-count = #4
244        c'4
245   @} 
246 @end example
248 @noindent
249 puts a quarter note C on a staff with 4 lines.  
252 @item Multi measure rests are now truly centered between the
253 clefs/barlines of the staff, their position is independent of symbols
254 on the other staffs.
256 @item Collision resolution for dots in chords has been improved greatly. 
258 @item
259 Spacing following barlines was improved for widely stretched lines.
261 @item
262 Lyric hyphens and extenders now conform to standard typesetting
263 practice.
265 @item
266 Lyrics are now aligned under note heads conforming to engraving
267 standards. The responsible code has been rewritten, and is drastically
268 simpler from the previous version. To aid this rewrite, the syntactic
269 function of the extender line ( __ ) has been changed: it is now
270 attached to the lyric syllable.
272 @item
273 When redefining a context, the associated identifier is also
274 updated. For example, after reading the following snippet,
275 @example
276  \translator @{
277         \ScoreContext
278         autoBeaming = ##f
279  @}
280 @end example
281 the definition of @code{ScoreContext} is updated to include the changed
282 setting.
285 @item
286 The weight of the stafflines is now heavier at smaller staff sizes.
287 The font has been modified to match this look: at smaller sizes, the
288 font is heavier and the note heads are more rounded.
290 @item Processing scores is now done while parsing the file. New
291 Scheme functions give more flexibility: for example, it is now possible
292 interpret a score, collecting synchronized musical events in a list, and
293 manipulate that information using inline Scheme. For an example, see
294 @file{input/no-notation/recording.ly}.
296 @item Font sizes can now truly be scaled continuously: the  @code{font-size}
297 is similar to the old @code{font-relative-size}, but may be set to
298 fractional values; the closest design size will be scaled to achieve
299 the desired size. As a side-effect, there are now no longer
300 limitations in using smaller fonts (eg. grace notes) at small staff
301 sizes.
303 @item Stem tips are now also engraved with rounded corners.
305 @item
306 The placement of accidentals on chords and ledgered notes is improved.
308 @end itemize
311 @chapter New features in 2.0 since 1.8
313 @itemize
315 @item
316 Crescendos can now be drawn dotted or dashed.
318 @item
319 Quarter tones are now supported. They are entered by suffixing
320 @code{ih} for a half-sharp and @code{eh} for a half-flat. Hence, the
321 following is an ascending list of pitches:
323 @example
324   ceses ceseh ces ceh c cih cis cisih cisis
325 @end example
327 @item
328 The following constructs have been removed from the syntax:
330 @example
331   \duration #SCHEME-DURATION
332   \pitch #SCHEME-PITCH
333   \outputproperty @var{func} @var{symbol} = @var{value}
334 @end example
336 For @code{\outputproperty}, the following may be substituted:
338 @example
339    \applyoutput #(outputproperty-compatibility @var{func}
340                   @var{symbol} @var{value}) 
341 @end example 
343 @item
344 Clefs may now be transposed arbitrarily, for example
346 @example
347   \clef "G_8"
348   \clef "G_15"
349   \clef "G_9"
350 @end example
353 @item
354 The syntax for chords and simultaneous music have changed.
355 Chords are entered as
357 @example
358    <@var{pitches}>
359 @end example
361 while simultaneous music is entered as
363 @example
364    <<@var{..music list..}>>
365 @end example
367 In effect, the meanings of both have been swapped relative to their 1.8
368 definition.  The syntax for lists in @code{\markup} has changed
369 alongside, but figured bass mode was not  changed, i.e.:
371 @example
372   \markup @{ \center <@var{..list of markups..}> @}
373   \figure @{ <@var{figures}> @}
374 @end example
376 As chords the more often used than simultaneous music, this change will
377 save keystrokes.
379 @item
380 Each music expression can now be tagged, to make different printed
381 versions from the same music expression.  In the following example,
382 we see two versions of a piece of music, one for the full score, and
383 one with cue notes for the instrumental part:
385 @example
386 << \tag #'part <<
387      @{ c4 f2 g4 @}      % in the part, we have cue-notes  
388      \\ R1 >>
389   \tag #'score R1  % in the score: only a rest
391 @end example
393 The same can be applied to articulations, texts, etc.: they are
394 made by prepending
396 @example
397         -\tag #@var{your-tags} 
398 @end example
400 to an articulation, for example, 
402 @example
403         c4-\tag #'with-fingerings -4 -\tag #'with-strings \6
404 @end example
406 This defines a note, which has a conditional fingering and a
407 string-number indication.
409 @item
410 The settings for chord-fingering are more flexible. You can specify a
411 list where fingerings may be placed, eg.
413 @example
414         \property Voice.fingeringOrientations = #'(left down)
415 @end example
417 This will put the fingering for the lowest note below the chord, and the
418 rest to the left.
420 @item
421 The script previously known as @code{ly2dvi} has been renamed to
422 @code{lilypond}. The binary itself is now installed as
423 @code{lilypond-bin}.
425 @item
426 Markup text (ie. general text formatting) may now be used for lyrics too. 
428 @item
429 Two new commands for grace notes have been added, @code{\acciaccatura}
430 and @code{\appoggiatura},
432 @example
433   \appoggiatura f8 e4
434   \acciaccatura g8 f4
435 @end example
437 Both reflect the traditional meanings of acciaccatura and appogiatura,
438 and both insert insert a slur from the first grace note to the main
439 note.
441 @item 
442 Layout options for grace notes are now stored in a context property,
443 and may now be set separately from musical content.
445 @item
446 The @code{\new} command will create a context with a unique
447 name automatically. Hence, for multi-staff scores, it is no longer
448 necessary to invent arbitrary context names. For example, a two-staff
449 score may be created by
451 @example
452   \simultaneous @{
453     \new Staff @{ @var{notes for 1st staff} @}
454     \new Staff @{ @var{notes for 2nd staff} @}
455   @}
456 @end example
460 @item
461 Octave checks make octave errors easier to correct.
462 The syntax is 
464 @example
465   \octave @var{pitch}
466 @end example
468 This checks that @var{pitch} (without octave) yields @var{pitch} (with
469 octave) in \relative mode. If not, a warning is printed, and the
470 octave is corrected.
472 @item
473 All articulations must now be entered postfix. For example,
475 @example
476         c8[( d8]) 
477 @end example
479 @noindent
480 is a pair of beamed slurred eighth notes.
482 @item
483 The definition of @code{\relative} has been simplified.  Octaves are
484 now always propagated in the order that music is entered. In the
485 following example,  
487 @example
488   PRE
489   \repeat "unfold" 3  BODY \alternative @{ ALT1 ALT2 @}
490   POST
491 @end example
493 @noindent
494 the octave of BODY is based on PRE, the starting octave of ALT1 on
495 BODY, the starting octave of ALT2 on ALT1, and the starting octave of
496 POST on ALT2.
498 The same mechanism is used for all other music expressions, except the
499 chord. Backwards compatibility is retained through a special program option,
500 which is set through 
502 @example
503   #(ly:set-option 'old-relative)
504 @end example
506 @item
507 Windows users can double click a @code{.ly} file to process and view
508 it automagically through the new @code{lily-wins} frontend.
510 @end itemize
515 @chapter New features in 1.8 since 1.6
517 @itemize
519 @item 
520 The chord entry code has been completely rewritten. It is now
521 cleaner and more flexible.
523 @item 
524 A new syntax has been added for text entry.  This syntax is more
525 friendly than the old mechanism, and it is implemented in a more
526 robust and modular way. For more information, refer to the section on
527 "Text markup" in the notation manual.
529 @item 
530 The integration of the input language and Scheme has been made deeper:
531 you can now use LilyPond identifiers in Scheme, and use Scheme
532 expressions instead of LilyPond identifiers.
534 @item 
535 The internal representation of music has been cleaned up completely
536 and converted to Scheme data structures.  The representation may be
537 exported as XML.
539 @item 
540 A new uniform postfix syntax for articulation has been introduced.
541 A beamed slurred pair of eighth notes can be entered as
543 @example
544         c8-[-( d8-]-) 
545 @end example
547 In version 2.0, postfix syntax will be the only syntax
548 available, and the dashes will become optional.
550 This will simplify the language: all articulations can be entered as
551 postfix, in any order.
553 @item 
554 A new syntax has been added for chords:
557 @example
558         << PITCHES >>
559 @end example 
561 It is not necessary to update files to this syntax, but it will be for
562 using LilyPond version 2.0.  In version 2.0, this syntax will be
563 changed to
565 @example
566         < PITCHES >
567 @end example
569 for chords, and
571 @example
572         \simultaneous @{ .. @} 
573 @end example
575 for simultaneous music.
577 To convert your files from <PITCHES> to <<PITCHES>>, use the script
578 included in buildscripts/convert-new-chords.py
580 This change was introduced for the following reasons
582 @itemize @bullet
583 @item
584 It solves the "start score with chord" problem, where you have to
585   state \context Voice explicitly when a chord was the start of a
586   Staff or Score.
587 @item
588 With the new syntax, it is possible to distinguish between
589   articulations (or fingerings) which are for a single chord note,
590   and which are for the entire chord. This allows for per-note
591   fingerings, and is more logical on the whole.
592 @end itemize
594 @item 
595 User code may now be executed during interpreting.  The syntax for
596 this code is
598 @example
599         \applycontext #SCHEME-FUNCTION
600 @end example
602 @item 
603 User code may now be executed on arbitrary grobs during interpreting.
604 The syntax for this feature is
606 @example
607         \applyoutput #SCHEME-FUNCTION
608 @end example
610 @noindent
611 SCHEME-FUNCTION takes a single argument, and is called for every grob
612 that is created in the current context.
614 @item 
615 New algorithms for chord-name formatting have been installed. They
616 can be tuned and have ergonomic syntax for entering exceptions.
618 @item 
619 Texts may now be put on multimeasure rests, e.g.
621 @example
622         R1*20^\markup @{ "GP" @}
623 @end example
625 @item
626 Ancient notation now prints ligatures in Gregorian square neumes
627 notation, roughly following the typographical style of the Liber
628 hymnarius of Solesmes, published in 1983.  Ligatures are still printed
629 without the proper line breaking and horizontal spacing.
631 @item 
632 Glissandi can now be printed using the zigzag style.
634 @item 
635 LilyPond can now print clusters. The syntax is
637 @example
638         \apply #notes-to-clusters @{ NOTE NOTE .. @}
639 @end example
641 @item
642 For irregular meters, beat grouping marks can be printed. The
643 syntax for this is
645 @example
646         #(set-time-signature 7 8 '(3 2 2))
647 @end example
650 @item 
651 Nested horizontal brackets for music analysis can now be printed:
653 @example
654         NOTE-\startGroup
655                 ..
656         NOTE-\stopGroup
657 @end example
660 @item  Ottava brackets are now fully supported as a feature.  The syntax
663 @example
664         #(set-octavation 1)
665 @end example
668 @item  Metronome markings are printed when a \tempo command is processed.
672 @item Fingerings can be put on chords horizontally.
676 @item  The appearance of various glyphs has been fine-tuned.
680 @item  Different types of percent style repeats may now be nested.
684 @item  The emacs support has been extended.
687 @item 
688 The manual has been completely revised and extended.
690 @end itemize
692 @chapter New features in 1.6 since 1.4
695 @itemize @bullet
697 @item
698 Support for figured bass and tablature.
700 @item
701 Completely rewritten beam formatting: provides much better output
702 now.
705 @item
706 Completely revised and improved music font.
709 @item
710 Completely rewritten MIDI import support.
712 @item
713 Completely rewritten grace note support. Practically speaking this
714 means that grace notes can be slurred to normal normal notes.
717 @item
718 Improved accidental handling and formatting: styles for producing
719 cautionaries may vary, and complex collisions between accidentals of a
720 chord are handled much better.
722 @item
723 Better spacing: both globally and locally. This includes subtle
724 details like optical stem spacing.
726 @item
727 More support for ancient notation: mensural ligatures, ambitus
728 (pitch range) of voices, more shapes, etc.
730 @item
731 More support for piano notation: bracket pedals, directed arpeggios,
732 arpeggio brackets.
734 @item
735 Easier music polyphonic music entry.
737 @item
738 More extensibility, many speedups and bugfixes
740 @item
741 The manual has been thoroughly revised.
743 @item
744 Development is now hosted at http://savannah.gnu.org, and sources
745 can be downloaded through anonymous CVS.
747 @item
748 Support for windows: LilyPond is part of the cygwin distribution,
749 which comes with a user-friendly installer.
751 @end itemize