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