]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/topdocs/NEWS.texi
2f95b8b4901deb1896c13741f7eed65e6754a795
[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 @itemize
11 @item Font sizes can now truly be scaled continuously: the  @code{font-size}
12 is similar to the old @code{font-relative-size}, but may be set to
13 fractional values; the closest design size will be scaled to achieve
14 the desired size. As a side-effect, there are now no longer
15 limitations in using smaller fonts (eg. grace notes) at small staff
16 sizes.
17
18 @item The appearance of stem tips is now also engraved with rounded corners.
19
20 @item
21 The placement of accidentals on chords and ledgered notes is improved.
22
23 @end itemize
24
25
26 @chapter New features in 2.0 since 1.8
27
28 @itemize
29
30 @item
31 Crescendos can now be drawn dotted or dashed.
32
33 @item
34 Quarter tones are now supported. They are entered by suffixing
35 @code{ih} for a half-sharp and @code{eh} for a half-flat. Hence, the
36 following is an ascending list of pitches:
37
38 @example
39   ceses ceseh ces ceh c cih cis cisih cisis
40 @end example
41
42 @item
43 The following constructs have been removed from the syntax:
44
45 @example
46   \duration #SCHEME-DURATION
47   \pitch #SCHEME-PITCH
48   \outputproperty @var{func} @var{symbol} = @var{value}
49 @end example
50
51 For @code{\outputproperty}, the following may be substituted:
52
53 @example
54    \applyoutput #(outputproperty-compatibility @var{func}
55                   @var{symbol} @var{value}) 
56 @end example 
57
58 @item
59 Clefs may now be transposed arbitrarily, for example
60
61 @example
62   \clef "G_8"
63   \clef "G_15"
64   \clef "G_9"
65 @end example
66
67
68 @item
69 The syntax for chords and simultaneous music have changed.
70 Chords are entered as
71
72 @example
73    <@var{pitches}>
74 @end example
75
76 while simultaneous music is entered as
77
78 @example
79    <<@var{..music list..}>>
80 @end example
81
82 In effect, the meanings of both have been swapped relative to their 1.8
83 definition.  The syntax for lists in @code{\markup} has changed
84 alongside, but figured bass mode was not  changed, i.e.:
85
86 @example
87   \markup @{ \center <@var{..list of markups..}> @}
88   \figure @{ <@var{figures}> @}
89 @end example
90
91 As chords the more often used than simultaneous music, this change will
92 save keystrokes.
93
94 @item
95 Each music expression can now be tagged, to make different printed
96 versions from the same music expression.  In the following example,
97 we see two versions of a piece of music, one for the full score, and
98 one with cue notes for the instrumental part:
99
100 @example
101 << \tag #'part <<
102      @{ c4 f2 g4 @}      % in the part, we have cue-notes  
103      \\ R1 >>
104   \tag #'score R1  % in the score: only a rest
105 >>
106 @end example
107  
108 The same can be applied to articulations, texts, etc.: they are
109 made by prepending
110
111 @example
112         -\tag #@var{your-tags} 
113 @end example
114
115 to an articulation, for example, 
116
117 @example
118         c4-\tag #'with-fingerings -4 -\tag #'with-strings \6
119 @end example
120
121 This defines a note, which has a conditional fingering and a
122 string-number indication.
123
124 @item
125 The settings for chord-fingering are more flexible. You can specify a
126 list where fingerings may be placed, eg.
127
128 @example
129         \property Voice.fingeringOrientations = #'(left down)
130 @end example
131
132 This will put the fingering for the lowest note below the chord, and the
133 rest to the left.
134
135 @item
136 The script previously known as @code{ly2dvi} has been renamed to
137 @code{lilypond}. The binary itself is now installed as
138 @code{lilypond-bin}.
139
140 @item
141 Markup text (ie. general text formatting) may now be used for lyrics too. 
142
143 @item
144 Two new commands for grace notes have been added, @code{\acciaccatura}
145 and @code{\appoggiatura},
146
147 @example
148   \appoggiatura f8 e4
149   \acciaccatura g8 f4
150 @end example
151
152 Both reflect the traditional meanings of acciaccatura and appogiatura,
153 and both insert insert a slur from the first grace note to the main
154 note.
155
156 @item 
157 Layout options for grace notes are now stored in a context property,
158 and may now be set separately from musical content.
159
160 @item
161 The @code{\new} command will create a context with a unique
162 name automatically. Hence, for multi-staff scores, it is no longer
163 necessary to invent arbitrary context names. For example, a two-staff
164 score may be created by
165
166 @example
167   \simultaneous @{
168     \new Staff @{ @var{notes for 1st staff} @}
169     \new Staff @{ @var{notes for 2nd staff} @}
170   @}
171 @end example
172
173
174
175 @item
176 Octave checks make octave errors easier to correct.
177 The syntax is 
178
179 @example
180   \octave @var{pitch}
181 @end example
182
183 This checks that @var{pitch} (without octave) yields @var{pitch} (with
184 octave) in \relative mode. If not, a warning is printed, and the
185 octave is corrected.
186
187 @item
188 All articulations must now be entered postfix. For example,
189
190 @example
191         c8[( d8]) 
192 @end example
193
194 @noindent
195 is a pair of beamed slurred eighth notes.
196
197 @item
198 The definition of @code{\relative} has been simplified.  Octaves are
199 now always propagated in the order that music is entered. In the
200 following example,  
201
202 @example
203   PRE
204   \repeat "unfold" 3  BODY \alternative @{ ALT1 ALT2 @}
205   POST
206 @end example
207
208 @noindent
209 the octave of BODY is based on PRE, the starting octave of ALT1 on
210 BODY, the starting octave of ALT2 on ALT1, and the starting octave of
211 POST on ALT2.
212
213 The same mechanism is used for all other music expressions, except the
214 chord. Backwards compatibility is retained through a special program option,
215 which is set through 
216
217 @example
218   #(ly:set-option 'old-relative)
219 @end example
220
221 @item
222 Windows users can double click a @code{.ly} file to process and view
223 it automagically through the new @code{lily-wins} frontend.
224
225 @end itemize
226
227
228
229
230 @chapter New features in 1.8 since 1.6
231
232 @itemize
233
234 @item 
235 The chord entry code has been completely rewritten. It is now
236 cleaner and more flexible.
237
238 @item 
239 A new syntax has been added for text entry.  This syntax is more
240 friendly than the old mechanism, and it is implemented in a more
241 robust and modular way. For more information, refer to the section on
242 "Text markup" in the notation manual.
243
244 @item 
245 The integration of the input language and Scheme has been made deeper:
246 you can now use LilyPond identifiers in Scheme, and use Scheme
247 expressions instead of LilyPond identifiers.
248
249 @item 
250 The internal representation of music has been cleaned up completely
251 and converted to Scheme data structures.  The representation may be
252 exported as XML.
253
254 @item 
255 A new uniform postfix syntax for articulation has been introduced.
256 A beamed slurred pair of eighth notes can be entered as
257
258 @example
259         c8-[-( d8-]-) 
260 @end example
261
262 In version 2.0, postfix syntax will be the only syntax
263 available, and the dashes will become optional.
264
265 This will simplify the language: all articulations can be entered as
266 postfix, in any order.
267
268 @item 
269 A new syntax has been added for chords:
270
271
272 @example
273         << PITCHES >>
274 @end example 
275
276 It is not necessary to update files to this syntax, but it will be for
277 using LilyPond version 2.0.  In version 2.0, this syntax will be
278 changed to
279
280 @example
281         < PITCHES >
282 @end example
283
284 for chords, and
285
286 @example
287         \simultaneous @{ .. @} 
288 @end example
289
290 for simultaneous music.
291
292 To convert your files from <PITCHES> to <<PITCHES>>, use the script
293 included in buildscripts/convert-new-chords.py
294
295 This change was introduced for the following reasons
296
297 @itemize @bullet
298 @item
299 It solves the "start score with chord" problem, where you have to
300   state \context Voice explicitly when a chord was the start of a
301   Staff or Score.
302 @item
303 With the new syntax, it is possible to distinguish between
304   articulations (or fingerings) which are for a single chord note,
305   and which are for the entire chord. This allows for per-note
306   fingerings, and is more logical on the whole.
307 @end itemize
308
309 @item 
310 User code may now be executed during interpreting.  The syntax for
311 this code is
312
313 @example
314         \applycontext #SCHEME-FUNCTION
315 @end example
316
317 @item 
318 User code may now be executed on arbitrary grobs during interpreting.
319 The syntax for this feature is
320
321 @example
322         \applyoutput #SCHEME-FUNCTION
323 @end example
324
325 @noindent
326 SCHEME-FUNCTION takes a single argument, and is called for every grob
327 that is created in the current context.
328
329 @item 
330 New algorithms for chord-name formatting have been installed. They
331 can be tuned and have ergonomic syntax for entering exceptions.
332
333 @item 
334 Texts may now be put on multimeasure rests, e.g.
335
336 @example
337         R1*20^\markup @{ "GP" @}
338 @end example
339
340 @item
341 Ancient notation now prints ligatures in Gregorian square neumes
342 notation, roughly following the typographical style of the Liber
343 hymnarius of Solesmes, published in 1983.  Ligatures are still printed
344 without the proper line breaking and horizontal spacing.
345
346 @item 
347 Glissandi can now be printed using the zigzag style.
348
349 @item 
350 LilyPond can now print clusters. The syntax is
351
352 @example
353         \apply #notes-to-clusters @{ NOTE NOTE .. @}
354 @end example
355
356 @item
357 For irregular meters, beat grouping marks can be printed. The
358 syntax for this is
359
360 @example
361         #(set-time-signature 7 8 '(3 2 2))
362 @end example
363
364
365 @item 
366 Nested horizontal brackets for music analysis can now be printed:
367
368 @example
369         NOTE-\startGroup
370                 ..
371         NOTE-\stopGroup
372 @end example
373
374
375 @item  Ottava brackets are now fully supported as a feature.  The syntax
376 is
377
378 @example
379         #(set-octavation 1)
380 @end example
381
382
383 @item  Metronome markings are printed when a \tempo command is processed.
384
385
386
387 @item Fingerings can be put on chords horizontally.
388
389
390
391 @item  The appearance of various glyphs has been fine-tuned.
392
393
394
395 @item  Different types of percent style repeats may now be nested.
396
397
398
399 @item  The emacs support has been extended.
400
401
402 @item 
403 The manual has been completely revised and extended.
404
405 @end itemize
406
407 @chapter New features in 1.6 since 1.4
408
409
410 @itemize @bullet
411
412 @item
413 Support for figured bass and tablature.
414
415 @item
416 Completely rewritten beam formatting: provides much better output
417 now.
418
419
420 @item
421 Completely revised and improved music font.
422
423
424 @item
425 Completely rewritten MIDI import support.
426
427 @item
428 Completely rewritten grace note support. Practically speaking this
429 means that grace notes can be slurred to normal normal notes.
430
431
432 @item
433 Improved accidental handling and formatting: styles for producing
434 cautionaries may vary, and complex collisions between accidentals of a
435 chord are handled much better.
436
437 @item
438 Better spacing: both globally and locally. This includes subtle
439 details like optical stem spacing.
440
441 @item
442 More support for ancient notation: mensural ligatures, ambitus
443 (pitch range) of voices, more shapes, etc.
444
445 @item
446 More support for piano notation: bracket pedals, directed arpeggios,
447 arpeggio brackets.
448
449 @item
450 Easier music polyphonic music entry.
451
452 @item
453 More extensibility, many speedups and bugfixes
454
455 @item
456 The manual has been thoroughly revised.
457
458 @item
459 Development is now hosted at http://savannah.gnu.org, and sources
460 can be downloaded through anonymous CVS.
461
462 @item
463 Support for windows: LilyPond is part of the cygwin distribution,
464 which comes with a user-friendly installer.
465
466 @end itemize