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