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