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