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