]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/changes.tely
Docs: Usage: update point-and-click information
[lilypond.git] / Documentation / changes.tely
1 \input texinfo @c -*- coding: utf-8; mode: texinfo; -*-
2 @setfilename lilypond-changes.info
3 @settitle LilyPond Changes
4
5 @ifhtml
6 @macro inputfileref{DIR,NAME}
7 @uref{../../\DIR\/collated-files.html#\NAME\,@file{\DIR\/\NAME\}}@c
8 @end macro
9 @macro usermanref{NAME}
10 @inforef{\NAME\,,../user/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 @macro textanchor{NAME}
24 @html
25 <a name="\NAME\"></a>
26 @end html
27 @end macro
28
29
30 @documentencoding utf-8
31 @documentlanguage en
32 @afourpaper
33
34 @finalout
35
36 @node Top
37 @top New features in 2.13 since 2.12
38
39 @ifhtml
40 This document is also available in @uref{changes.pdf,PDF}. It is part of
41 the @uref{lilypond/Manuals.html,LilyPond Documentation}.
42 @end ifhtml
43
44
45
46
47 @itemize @bullet
48
49 @ignore
50
51 HINTS
52
53 * only show verbatim input for syntax/input changes
54
55 * try to be as brief possible in those cases
56
57 * don't try to provide real-world examples, they often get too big,
58 which scares away people.
59
60 * Write complete sentences.
61
62 * only show user-visible changes.
63
64 @end ignore
65
66 @item
67 In addition to the existing @code{\hspace} markup command,
68 a new @code{\vspace} command has been added to provide an easy
69 and flexible way to add vertical space in markups.  This feature
70 is based on Nicolas Sceaux's work.
71
72 @item
73 The direction of manual beams can be set with @code{^[} and @code{_[}.
74
75 @item
76 A version of the breve note head has been added with two vertical lines on each side.
77 @lilypond[quote,relative=2]
78 \time 4/2
79 \override Staff.NoteHead #'style = #'altdefault
80 c\breve | b\breve
81 @end lilypond
82
83 @item
84 Instrument names and vocal names now take into account the extent of
85 system start delimiters in other staves for their positioning,
86 resulting in improved default alignment for left-, center- and
87 right-aligned names.
88 @lilypond[quote,indent=18\mm]
89 <<
90   \new StaffGroup <<
91     \new GrandStaff <<
92       \new Staff {
93         \set Staff.instrumentName = #"Piccolo"
94         c''1
95       }
96       \new Staff {
97         \set Staff.instrumentName = #"Flute"
98         c''1
99       }
100     >>
101     \new Staff {
102       \set Staff.instrumentName = #"Bassoon"
103       \clef tenor
104       c'1
105     }
106   >>
107   \new PianoStaff <<
108     \set PianoStaff.instrumentName = #"Piano"
109     \context Staff = "up" {
110       c'1
111     }
112     \context Staff = "down" {
113       \clef bass
114       c1
115     }
116   >>
117 >>
118 @end lilypond
119
120 @item
121 Braces in markup can now be selected by point size using the markup commands
122 @code{\left-brace} and @code{\right-brace}.
123 @lilypond[quote]
124 \markup {
125   \left-brace #35
126   \hspace #2
127   \right-brace #45
128 }
129 @end lilypond
130
131 @item
132 Intermediate .ps files which are created by LilyPond
133 during compilation are now deleted by default.  To keep them,
134 add the following line to your input files:
135 @example
136 #(ly:set-option 'delete-intermediate-files #f)
137 @end example
138
139 @item
140 Dashed and dotted slurs, phrasing slurs, and ties
141 have been made variable thickness, and
142 partially dashed slurs are now available:
143 @lilypond[quote,relative=2]
144 \slurDashed
145 c4( d e f) |
146 \slurDotted
147 g4( f e d) |
148 \slurHalfDashed
149 c4( d e f)
150 @end lilypond
151
152 @item
153 An eyeglasses markup was added, indicating strongly to look at the
154 conductor for instructions:
155 @lilypond[quote,relative=2]
156 \mark \markup { \eyeglasses }
157 c4_\markup { \eyeglasses }
158 @end lilypond
159
160 @item
161 A snap-pizzicato (also known as Bartok-pizzicato) articulation was added:
162 @lilypond[quote,relative=2]
163 c4\snappizzicato
164 @end lilypond
165
166 @item
167 Tuplet number formatting functions are now available to print other fractions
168 and to add notes to the number or fraction:
169 @lilypond[quote,relative=2]
170 \once \override TupletNumber #'text =
171   #(tuplet-number::non-default-tuplet-denominator-text 7)
172 \times 2/3 { c4. c4. c4. c4. }
173
174 \once \override TupletNumber #'text =
175   #(tuplet-number::non-default-tuplet-fraction-text 12 7)
176 \times 2/3 { c4. c4. c4. c4. }
177 \once \override TupletNumber #'text =
178   #(tuplet-number::append-note-wrapper
179     (tuplet-number::non-default-tuplet-fraction-text 12 7) "8")
180 \times 2/3 { c4. c4. c4. c4. }
181
182 \once \override TupletNumber #'text =
183   #(tuplet-number::append-note-wrapper tuplet-number::calc-denominator-text "4")
184 \times 2/3 { c8 c8 c8 c8 c8 c8 }
185 \once \override TupletNumber #'text =
186   #(tuplet-number::append-note-wrapper tuplet-number::calc-fraction-text "4")
187 \times 2/3 { c8 c8 c8 c8 c8 c8 }
188
189 \once \override TupletNumber #'text =
190   #(tuplet-number::fraction-with-notes "4." "8")
191 \times 2/3 { c4. c4. c4. c4. }
192 \once \override TupletNumber #'text =
193   #(tuplet-number::non-default-fraction-with-notes 12 "8" 4 "4")
194 \times 2/3  { c4. c4. c4. c4. }
195 @end lilypond
196
197 @item
198 FretBoards now have a chordChanges property to keep repeated FretBoard objects
199 from being typeset.
200
201 @item
202 Support for using an alternative music font, such as Gonville, is now
203 added.
204
205 @end itemize
206
207
208
209 @ifhtml
210 For older news, go to
211 @uref{http://lilypond.org/doc/v2.12/Documentation/topdocs/NEWS.html},
212 @uref{http://lilypond.org/doc/v2.10/Documentation/topdocs/NEWS.html},
213 or @uref{../,go back} to the Documentation index.
214
215
216 @end ifhtml
217
218 @bye