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