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