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