]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/topdocs/NEWS.tely
fa47c14a5731bb9ae82fcd49db5c57c3da7a45e4
[lilypond.git] / Documentation / topdocs / NEWS.tely
1 \input texinfo @c -*-texinfo-*-
2 @setfilename NEWS.info
3 @settitle NEWS
4
5 @ifhtml
6 @macro inputfileref{DIR,NAME}
7 @uref{../../../\DIR\/out-www/collated-files.html#\NAME\,@file{\DIR\/\NAME\}}@c
8 @end macro
9 @macro usermanref{NAME}
10 @inforef{\NAME\,,../../user/out-www/lilypond/lilypond}@c
11 @end macro
12 @end ifhtml
13
14 @ifnothtml
15 @macro inputfileref{DIR,NAME}
16 @file{\DIR\/\NAME\}@c
17 @end macro
18 @macro usermanref{NAME}
19 See user manual, \NAME\
20 @end macro
21 @end ifnothtml
22
23
24 @documentencoding utf-8
25 @documentlanguage en
26
27 @ifnottex
28 @node Top
29 @top
30 @end ifnottex
31 @unnumbered New features in 2.7 since 2.6
32
33
34 @itemize @bullet
35
36 @item
37 Nested tuplets are automatically positioned,
38
39 @lilypond[fragment,raggedright,verbatim,relative=2]
40 \set tupletNumberFormatFunction = #fraction-tuplet-formatter
41 \times 4/6 {
42   a4 a 
43   \times 3/5 { a a a a a }
44 }
45 @end lilypond
46
47 This feature was sponsored by Trevor Baca.
48
49 @item
50 Music expressions can be displayed, in LilyPond notation, using the
51 new @code{\displayLilyMusic} function. For instance:
52 @verbatim
53 \displayLilyMusic \transpose c a, { c d e f }
54 @end verbatim
55 will print:
56 @verbatim
57 { a, b, cis d }
58 @end verbatim
59
60 @item
61 The current bar number may be checked with @code{\barNumberCheck}, eg.
62
63 @verbatim
64 \barNumberCheck #22
65 @end verbatim
66
67 @noindent
68 will print a warning if it doesn't happen in measure 22.
69  
70 @item
71 If @code{showLastLength} is set, only the last few measures of a piece
72 are rendered, which speeds up correcting scores. For example, setting
73
74 @verbatim
75 showLastLength = R1*5
76 \score { ... }
77 @end verbatim
78
79 @noindent
80 will render only the last five measures (assuming 4/4 time signature)
81 of a piece.
82
83 @item
84 Melismata can be specified simply in the lyrics now, eg.
85
86 @lilypond[relative=1,verbatim,fragment]
87 {
88   c d( e) f e
89 } \addlyrics {
90   Ky -- _ _ ri e
91 }
92 @end lilypond 
93
94 This feature was sponsored by Nancho Alvarez 
95
96 @item
97 Suggested accidentals (for notating musica ficta) may be switched on
98 with @code{suggestAccidentals}
99
100 @lilypond[verbatim,fragment,relative=2]
101 \set suggestAccidentals = ##t
102 ais bis
103 @end lilypond 
104
105 This feature was sponsored by Nancho Alvarez.
106
107 @item
108 The setting @code{whichBar} and time-bookkeeping is now split into a
109 @code{Default_bar_line_engraver} and @code{Timing_translator}
110 respectively.
111
112 @item
113 Explicit pitches may be added to trills,
114
115 @lilypond[relative,verbatim,fragment]
116   \pitchedTrill c4\startTrillSpan fis f\stopTrillSpan
117 @end lilypond 
118
119 This feature was sponsored by D. Josiah Boothby and Jamie Bullock
120
121 @item
122 Markup now supports formatting of text paragraphs, using
123 @code{\wordwrap} and @code{\justify}.
124
125 This feature was sponsored by Sven Axelsson.
126 @end itemize
127
128 @ifhtml
129 For older news, go to
130 @uref{http://lilypond.org/doc/v2.6/Documentation/topdocs/out-www/NEWS.html}.
131 @end ifhtml
132
133 @bye