]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/topdocs/NEWS.tely
64158ca328d0b6a0f823be6bae635232b4e75a81
[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 Tuplets can be made to reach the next non-tuplet note by setting the
38 @code{tupletFullLength}  property,
39
40 @lilypond[fragment]
41 \new Voice \with {
42   \remove  Forbid_line_break_engraver
43   allowBeamBreak = ##t
44 }
45 {
46   \set tupletFullLength = ##t
47   \times 2/3 { c8[ c c] }
48   c4
49 }
50 @end lilypond  
51
52
53 @item
54 When @code{strict-note-spacing} is set, note are spaced without regard
55 for clefs, bar lines and grace notes. For example,
56
57 @lilypond[fragment,verbatim,relative=2]
58 \override Score.SpacingSpanner #'strict-note-spacing = ##t 
59 \new Staff { c8[ c \clef alto c \grace { c16[ c] } c8 c c]  c32[ c32] }
60 @end lilypond
61
62 This feature was sponsored by Trevor Baca. 
63
64 @item
65 Beams support the @code{break-overshoot} property, for example
66
67 @lilypond[relative=2,fragment,verbatim]
68 \set allowBeamBreak = ##t
69 \override Beam #'break-overshoot = #'(1.0 . 2.0)
70 c2.. c8[ \break c]
71 @end lilypond
72  
73 This feature was sponsored by Trevor Baca. 
74
75 @item
76 Proportional notation is supported.  Notes can be spaced proportional
77 to their time-difference, by assigning a duration.  to
78 @code{proportionalNotationDuration}. For example,
79
80 @lilypond[verbatim,relative=2,fragment,raggedright]
81 <<
82   \set Score.proportionalNotationDuration = #(ly:make-moment 1 16)
83   \new Staff { c8[ c c c c c]  c4 c2 r2 }
84   \new Staff { c2  \times 2/3 { c8 c c } c4 c1 }
85 >>
86 @end lilypond
87
88 This feature was sponsored by Trevor Baca.
89
90 @item 
91 LilyPond will space note according to their durations, disregarding
92 symbol sizes (e.g. accidentals) if @code{uniform-stretching} of the
93 @code{SpacingSpanner} grob is set,
94
95
96 @lilypond[verbatim,relative=2,fragment]
97 <<
98   \override  Score.SpacingSpanner #'uniform-stretching = ##t 
99   \new Staff { c16[ c c c c c c c c c16]  }
100   \new Staff {
101     \times 6/7 { c16 c c cis c c c }
102     c8[ c32 c32 c16]
103   }
104 >>
105 @end lilypond
106
107 This feature was sponsored by Trevor Baca.
108  
109 @item
110 Tuplet brackets get arrows when they are broken across a line.
111
112 @lilypond[fragment,raggedright,verbatim,relative=2]
113 \times 4/5 {
114  c c c \bar "empty" \break c c
115 }
116 @end lilypond
117
118 This feature was sponsored by Trevor Baca.
119
120
121 @item
122 Arrow heads were added to the Feta font.
123
124 @lilypond[]
125 \lyrics {
126   \markup {
127     filled, to the right:  \hspace #2.0 \fontsize #6 \arrow-head #0 #1 ##t
128     open, down: \hspace #2.0 \fontsize #6 \arrow-head #1 #-1 ##f
129   }
130 }
131 @end lilypond
132
133 These glyphs have been sponsored by Trevor Baca.
134
135
136 @item
137 Nested tuplets are automatically positioned,
138
139 @lilypond[fragment,raggedright,verbatim,relative=2]
140 \set tupletNumberFormatFunction = #fraction-tuplet-formatter
141 \times 4/6 {
142   a4 a 
143   \times 3/5 { a a a a a }
144 }
145 @end lilypond
146
147 This feature was sponsored by Trevor Baca.
148
149 @item
150 Music expressions can be displayed, in LilyPond notation, using the
151 new @code{\displayLilyMusic} function. For instance:
152 @verbatim
153 \displayLilyMusic \transpose c a, { c d e f }
154 @end verbatim
155 will print:
156 @verbatim
157 { a, b, cis d }
158 @end verbatim
159
160 @item
161 The current bar number may be checked with @code{\barNumberCheck}, eg.
162
163 @verbatim
164 \barNumberCheck #22
165 @end verbatim
166
167 @noindent
168 will print a warning if it doesn't happen in measure 22.
169  
170 @item
171 If @code{showLastLength} is set, only the last few measures of a piece
172 are rendered, which speeds up correcting scores. For example, setting
173
174 @verbatim
175 showLastLength = R1*5
176 \score { ... }
177 @end verbatim
178
179 @noindent
180 will render only the last five measures (assuming 4/4 time signature)
181 of a piece.
182
183 @item
184 Melismata can be specified simply in the lyrics now, eg.
185
186 @lilypond[relative=1,verbatim,fragment]
187 {
188   c d( e) f e
189 } \addlyrics {
190   Ky -- _ _ ri e
191 }
192 @end lilypond 
193
194 This feature was sponsored by Nancho Alvarez 
195
196 @item
197 Suggested accidentals (for notating musica ficta) may be switched on
198 with @code{suggestAccidentals}
199
200 @lilypond[verbatim,fragment,relative=2]
201 \set suggestAccidentals = ##t
202 ais bis
203 @end lilypond 
204
205 This feature was sponsored by Nancho Alvarez.
206
207 @item
208 The setting @code{whichBar} and time-bookkeeping is now split into a
209 @code{Default_bar_line_engraver} and @code{Timing_translator}
210 respectively.
211
212 @item
213 Explicit pitches may be added to trills,
214
215 @lilypond[relative,verbatim,fragment]
216   \pitchedTrill c4\startTrillSpan fis f\stopTrillSpan
217 @end lilypond 
218
219 This feature was sponsored by D. Josiah Boothby and Jamie Bullock
220
221 @item
222 Markup now supports formatting of text paragraphs, using
223 @code{\wordwrap} and @code{\justify}.
224
225 This feature was sponsored by Sven Axelsson.
226 @end itemize
227
228 @ifhtml
229 For older news, go to
230 @uref{http://lilypond.org/doc/v2.6/Documentation/topdocs/out-www/NEWS.html}.
231 @end ifhtml
232
233 @bye