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