]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/topdocs/NEWS.texi
release commit
[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
8 @chapter New features in 2.1 since 2.0
9
10 @ignore
11 Unreleased:
12
13 @itemize
14 @end itemize
15
16 Version 2.1.13
17 @end ignore
18
19 @itemize @bullet
20
21 @item The program reference has been cleaned up and revised.
22
23 @item The syntax for setting properties has been simplified:
24 the following table lists the differences:
25
26 @example
27       (old)                           (new)
28
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
35
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}. 
39
40 Old:
41
42 @example
43    \property Voice.autoBeaming = ##f
44    \property Staff.TimeSignature \set #'style = #'C
45 @end example
46
47 New:
48
49 @example
50    \set autoBeaming = ##f
51    \override Staff.TimeSignature #'style = #'C
52 @end example
53
54
55 @item Tweaks  made with @code{\override} and @code{\revert} no longer
56 hide tweaks at higher context levels.
57
58 @item Melismata in lyrics are also properly handled  in the MIDI output.
59
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.
64
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
72
73 @item The @code{LyricsVoice} context has been removed. Lyrics should only
74 be constructed in @code{Lyrics}.
75
76 @item The @code{Thread} context has been removed. Note heads and rests
77 are now constructed at @code{Voice} level.
78
79 @item  Harmonic notes can now be entered as
80
81 @example
82    <c' g''\harmonic>
83 @end example
84
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:
88
89 @example
90   \score @{
91     \drums \new DrumStaff @{ hihat4 cowbell8 @}
92   @}
93 @end example
94
95 @item The automatic staff changer was internally rewritten. As a
96 result, the syntax has been simplified as well:
97
98 @example
99   \autochange @var{the music}
100 @end example
101
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
109
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}.
113
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.
119
120 Warning: this does not protect against denial-of-service attacks using
121 Guile, @TeX{} or PostScript.
122
123 (This feature is still experimental.)
124
125 @item There is now a Scheme macro for defining markup
126 commands. Special mark-up commands can be defined in user-files too.
127
128 @item Many fixes for dimension scaling have been made,
129 resulting in correct results for scores that mix staves in different
130 sizes.
131
132 @item Improved robustness when  layout properties are accidentally removed.  
133
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
139
140 @noindent
141 See @file{input/regression/new-part-combine.ly} for an example.
142
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}.
148
149 @item Formatting of ottava brackets has been much improved.
150
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.
154
155 @example
156        \context Voice \applyoutput #(add-balloon-text
157                                      'NoteHead "heads, or tails?"
158                                      '(0 . -3))
159
160       
161        c8
162 @end example
163
164
165 @item Default staff sizes are now scalable. There are two new mechanisms for
166 setting staff sizes. Both are demonstrated in this fragment:
167
168 @example
169   #(set-global-staff-size 15)
170   \paper @{
171     #(paper-set-staff-size (* 15 pt))
172   @}   
173 @end example
174
175
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
179
180 @example
181   #(set-paper-size "a4")
182 @end example 
183
184
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.
188
189 Warning: this will cause problems in scores that use bar checks to
190 shorten measures.
191
192 @item The black note head was made a little rounder, which causes a less
193  frantic graphic impression.
194
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, 
199
200 @example
201   \relative c'' @{ c='' b=' d,='' @}        
202 @end example
203
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.
208
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}.
213
214 @item Bar lines may now be dotted.
215
216
217 @item The documentation now has links to a wiki, where everyone can
218 add personal comments to the manual.
219
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
230
231 @item The syntax for changing staffs has changed. The keyword
232 @code{\change} should now be used, e.g.
233
234 @example
235   \change Staff = up
236 @end example 
237
238 @item Features of spanner contexts, like @code{Staff}, can now be changed
239   using @code{\property}, eg.
240
241 @example
242   \new Staff @{
243        \property Staff.StaffSymbol \set #'line-count = #4
244        c'4
245   @} 
246 @end example
247
248 @noindent
249 puts a quarter note C on a staff with 4 lines.  
250
251
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.
255
256 @item Collision resolution for dots in chords has been improved greatly. 
257
258 @item
259 Spacing following barlines was improved for widely stretched lines.
260
261 @item
262 Lyric hyphens and extenders now conform to standard typesetting
263 practice.
264
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.
271
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.
283
284
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.
289
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}.
295
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.
302
303 @item Stem tips are now also engraved with rounded corners.
304
305 @item
306 The placement of accidentals on chords and ledgered notes is improved.
307
308 @end itemize
309
310
311 @chapter New features in 2.0 since 1.8
312
313 @itemize
314
315 @item
316 Crescendos can now be drawn dotted or dashed.
317
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:
322
323 @example
324   ceses ceseh ces ceh c cih cis cisih cisis
325 @end example
326
327 @item
328 The following constructs have been removed from the syntax:
329
330 @example
331   \duration #SCHEME-DURATION
332   \pitch #SCHEME-PITCH
333   \outputproperty @var{func} @var{symbol} = @var{value}
334 @end example
335
336 For @code{\outputproperty}, the following may be substituted:
337
338 @example
339    \applyoutput #(outputproperty-compatibility @var{func}
340                   @var{symbol} @var{value}) 
341 @end example 
342
343 @item
344 Clefs may now be transposed arbitrarily, for example
345
346 @example
347   \clef "G_8"
348   \clef "G_15"
349   \clef "G_9"
350 @end example
351
352
353 @item
354 The syntax for chords and simultaneous music have changed.
355 Chords are entered as
356
357 @example
358    <@var{pitches}>
359 @end example
360
361 while simultaneous music is entered as
362
363 @example
364    <<@var{..music list..}>>
365 @end example
366
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.:
370
371 @example
372   \markup @{ \center <@var{..list of markups..}> @}
373   \figure @{ <@var{figures}> @}
374 @end example
375
376 As chords the more often used than simultaneous music, this change will
377 save keystrokes.
378
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:
384
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
390 >>
391 @end example
392  
393 The same can be applied to articulations, texts, etc.: they are
394 made by prepending
395
396 @example
397         -\tag #@var{your-tags} 
398 @end example
399
400 to an articulation, for example, 
401
402 @example
403         c4-\tag #'with-fingerings -4 -\tag #'with-strings \6
404 @end example
405
406 This defines a note, which has a conditional fingering and a
407 string-number indication.
408
409 @item
410 The settings for chord-fingering are more flexible. You can specify a
411 list where fingerings may be placed, eg.
412
413 @example
414         \property Voice.fingeringOrientations = #'(left down)
415 @end example
416
417 This will put the fingering for the lowest note below the chord, and the
418 rest to the left.
419
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}.
424
425 @item
426 Markup text (ie. general text formatting) may now be used for lyrics too. 
427
428 @item
429 Two new commands for grace notes have been added, @code{\acciaccatura}
430 and @code{\appoggiatura},
431
432 @example
433   \appoggiatura f8 e4
434   \acciaccatura g8 f4
435 @end example
436
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.
440
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.
444
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
450
451 @example
452   \simultaneous @{
453     \new Staff @{ @var{notes for 1st staff} @}
454     \new Staff @{ @var{notes for 2nd staff} @}
455   @}
456 @end example
457
458
459
460 @item
461 Octave checks make octave errors easier to correct.
462 The syntax is 
463
464 @example
465   \octave @var{pitch}
466 @end example
467
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.
471
472 @item
473 All articulations must now be entered postfix. For example,
474
475 @example
476         c8[( d8]) 
477 @end example
478
479 @noindent
480 is a pair of beamed slurred eighth notes.
481
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,  
486
487 @example
488   PRE
489   \repeat "unfold" 3  BODY \alternative @{ ALT1 ALT2 @}
490   POST
491 @end example
492
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.
497
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 
501
502 @example
503   #(ly:set-option 'old-relative)
504 @end example
505
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.
509
510 @end itemize
511
512
513
514
515 @chapter New features in 1.8 since 1.6
516
517 @itemize
518
519 @item 
520 The chord entry code has been completely rewritten. It is now
521 cleaner and more flexible.
522
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.
528
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.
533
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.
538
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
542
543 @example
544         c8-[-( d8-]-) 
545 @end example
546
547 In version 2.0, postfix syntax will be the only syntax
548 available, and the dashes will become optional.
549
550 This will simplify the language: all articulations can be entered as
551 postfix, in any order.
552
553 @item 
554 A new syntax has been added for chords:
555
556
557 @example
558         << PITCHES >>
559 @end example 
560
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
564
565 @example
566         < PITCHES >
567 @end example
568
569 for chords, and
570
571 @example
572         \simultaneous @{ .. @} 
573 @end example
574
575 for simultaneous music.
576
577 To convert your files from <PITCHES> to <<PITCHES>>, use the script
578 included in buildscripts/convert-new-chords.py
579
580 This change was introduced for the following reasons
581
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
593
594 @item 
595 User code may now be executed during interpreting.  The syntax for
596 this code is
597
598 @example
599         \applycontext #SCHEME-FUNCTION
600 @end example
601
602 @item 
603 User code may now be executed on arbitrary grobs during interpreting.
604 The syntax for this feature is
605
606 @example
607         \applyoutput #SCHEME-FUNCTION
608 @end example
609
610 @noindent
611 SCHEME-FUNCTION takes a single argument, and is called for every grob
612 that is created in the current context.
613
614 @item 
615 New algorithms for chord-name formatting have been installed. They
616 can be tuned and have ergonomic syntax for entering exceptions.
617
618 @item 
619 Texts may now be put on multimeasure rests, e.g.
620
621 @example
622         R1*20^\markup @{ "GP" @}
623 @end example
624
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.
630
631 @item 
632 Glissandi can now be printed using the zigzag style.
633
634 @item 
635 LilyPond can now print clusters. The syntax is
636
637 @example
638         \apply #notes-to-clusters @{ NOTE NOTE .. @}
639 @end example
640
641 @item
642 For irregular meters, beat grouping marks can be printed. The
643 syntax for this is
644
645 @example
646         #(set-time-signature 7 8 '(3 2 2))
647 @end example
648
649
650 @item 
651 Nested horizontal brackets for music analysis can now be printed:
652
653 @example
654         NOTE-\startGroup
655                 ..
656         NOTE-\stopGroup
657 @end example
658
659
660 @item  Ottava brackets are now fully supported as a feature.  The syntax
661 is
662
663 @example
664         #(set-octavation 1)
665 @end example
666
667
668 @item  Metronome markings are printed when a \tempo command is processed.
669
670
671
672 @item Fingerings can be put on chords horizontally.
673
674
675
676 @item  The appearance of various glyphs has been fine-tuned.
677
678
679
680 @item  Different types of percent style repeats may now be nested.
681
682
683
684 @item  The emacs support has been extended.
685
686
687 @item 
688 The manual has been completely revised and extended.
689
690 @end itemize
691
692 @chapter New features in 1.6 since 1.4
693
694
695 @itemize @bullet
696
697 @item
698 Support for figured bass and tablature.
699
700 @item
701 Completely rewritten beam formatting: provides much better output
702 now.
703
704
705 @item
706 Completely revised and improved music font.
707
708
709 @item
710 Completely rewritten MIDI import support.
711
712 @item
713 Completely rewritten grace note support. Practically speaking this
714 means that grace notes can be slurred to normal normal notes.
715
716
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.
721
722 @item
723 Better spacing: both globally and locally. This includes subtle
724 details like optical stem spacing.
725
726 @item
727 More support for ancient notation: mensural ligatures, ambitus
728 (pitch range) of voices, more shapes, etc.
729
730 @item
731 More support for piano notation: bracket pedals, directed arpeggios,
732 arpeggio brackets.
733
734 @item
735 Easier music polyphonic music entry.
736
737 @item
738 More extensibility, many speedups and bugfixes
739
740 @item
741 The manual has been thoroughly revised.
742
743 @item
744 Development is now hosted at http://savannah.gnu.org, and sources
745 can be downloaded through anonymous CVS.
746
747 @item
748 Support for windows: LilyPond is part of the cygwin distribution,
749 which comes with a user-friendly installer.
750
751 @end itemize