1 \input texinfo @c -*- coding: utf-8; mode: texinfo; -*-
2 @setfilename lilypond-changes.info
3 @settitle LilyPond Changes
6 @macro inputfileref{DIR,NAME}
7 @uref{../../\DIR\/collated-files.html#\NAME\,@file{\DIR\/\NAME\}}@c
9 @macro usermanref{NAME}
10 @inforef{\NAME\,,../user/lilypond/lilypond}@c
15 @macro inputfileref{DIR,NAME}
18 @macro usermanref{NAME}
19 See user manual, \NAME\
23 @macro textanchor{NAME}
30 @documentencoding utf-8
37 @top New features in 2.13 since 2.12
40 This document is also available in @uref{changes.pdf,PDF}. It is part of
41 the @uref{lilypond/manuals.html,LilyPond Documentation}.
53 * only show verbatim input for syntax/input changes
55 * try to be as brief possible in those cases
57 * don't try to provide real-world examples, they often get too big,
58 which scares away people.
60 * Write complete sentences.
62 * only show user-visible changes.
67 The Unicode Bidirectional Algorithm is now fully supported for
68 single-line markup due to enhanced integration with Pango.
71 LilyPond is now licensed under the GNU GPL v3+.
74 Chords can be repeated using the @code{q} shortcut:
76 @lilypond[verbatim,quote,relative=2]
81 Paper margin defaults, as specified in @file{ly/@/paper@/-defaults@/-init@/.ly}, apply
82 to the default paper size (a4) and are automatically scaled according to the
86 All combinations of @code{left-margin}, @code{right-margin} and
87 @code{line-width} work now. There is no more need to set @code{line-width}
88 manually unless you explicitly want to.
91 Support for using an alternative music font, such as Gonville, is now
95 In addition to the existing @code{\hspace} markup command,
96 a new @code{\vspace} command has been added to provide an easy
97 and flexible way to add vertical space in markups.
100 The direction of manual beams can be set with @code{^[} and @code{_[}.
103 A version of the breve note head has been added with two vertical lines on each side.
104 @lilypond[quote,relative=2]
106 \override Staff.NoteHead #'style = #'altdefault
111 Instrument names and vocal names now take into account the extent of
112 system start delimiters in other staves for their positioning,
113 resulting in improved default alignment for left-, center- and
115 @lilypond[quote,indent=18\mm]
120 \set Staff.instrumentName = #"Piccolo"
124 \set Staff.instrumentName = #"Flute"
129 \set Staff.instrumentName = #"Bassoon"
135 \set PianoStaff.instrumentName = #"Piano"
136 \context Staff = "up" {
139 \context Staff = "down" {
148 Braces in markup can now be selected by point size using the markup commands
149 @code{\left-brace} and @code{\right-brace}.
159 Intermediate .ps files which are created by LilyPond
160 during compilation are now deleted by default. To keep them,
161 add the following line to your input files:
163 #(ly:set-option 'delete-intermediate-files #f)
167 Dashed and dotted slurs, phrasing slurs, and ties
168 have been made variable thickness, and
169 partially dashed slurs are now available:
170 @lilypond[quote,relative=2]
180 An eyeglasses markup was added, indicating strongly to look at the
181 conductor for instructions:
182 @lilypond[quote,relative=2]
183 \mark \markup { \eyeglasses }
184 c4_\markup { \eyeglasses }
188 A snap-pizzicato (also known as Bartok-pizzicato) articulation was added:
189 @lilypond[quote,relative=2]
194 Tuplet number formatting functions are now available to print other fractions
195 and to add notes to the number or fraction:
196 @lilypond[quote,relative=2]
197 \once \override TupletNumber #'text =
198 #(tuplet-number::non-default-tuplet-denominator-text 7)
199 \times 2/3 { c4. c4. c4. c4. }
201 \once \override TupletNumber #'text =
202 #(tuplet-number::non-default-tuplet-fraction-text 12 7)
203 \times 2/3 { c4. c4. c4. c4. }
204 \once \override TupletNumber #'text =
205 #(tuplet-number::append-note-wrapper
206 (tuplet-number::non-default-tuplet-fraction-text 12 7) "8")
207 \times 2/3 { c4. c4. c4. c4. }
209 \once \override TupletNumber #'text =
210 #(tuplet-number::append-note-wrapper tuplet-number::calc-denominator-text "4")
211 \times 2/3 { c8 c8 c8 c8 c8 c8 }
212 \once \override TupletNumber #'text =
213 #(tuplet-number::append-note-wrapper tuplet-number::calc-fraction-text "4")
214 \times 2/3 { c8 c8 c8 c8 c8 c8 }
216 \once \override TupletNumber #'text =
217 #(tuplet-number::fraction-with-notes "4." "8")
218 \times 2/3 { c4. c4. c4. c4. }
219 \once \override TupletNumber #'text =
220 #(tuplet-number::non-default-fraction-with-notes 12 "8" 4 "4")
221 \times 2/3 { c4. c4. c4. c4. }
225 FretBoards now have a chordChanges property to keep repeated FretBoard objects
233 For older news, go to
234 @uref{http://lilypond.org/doc/v2.12/Documentation/topdocs/NEWS.html},
235 @uref{http://lilypond.org/doc/v2.10/Documentation/topdocs/NEWS.html},
236 or @uref{../,go back} to the Documentation index.