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