]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/changes.tely
Docs: News: Tidy formatting and use lilypond-book `relative' option.
[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
33 @finalout
34
35 @node Top
36 @top New features in 2.13 since 2.12
37
38 @ifhtml
39 This document is also available in @uref{changes.pdf,PDF}. It is part of
40 the @uref{lilypond/Manuals.html,LilyPond Documentation}.
41 @end ifhtml
42
43
44
45
46 @itemize @bullet
47
48 @ignore
49
50 HINTS
51
52 * only show verbatim input for syntax/input changes
53
54 * try to be as brief possible in those cases
55
56 * don't try to provide real-world examples, they often get too big,
57 which scares away people.
58
59 * Write complete sentences.
60
61 * only show user-visible changes.
62
63 @end ignore
64
65 @item
66 Intermediate .ps files which are created by LilyPond
67 during compilation are now deleted by default.  To keep them,
68 add the following line to your input files:
69 @example
70 #(ly:set-option 'delete-intermediate-files #f)
71 @end example
72
73 @item
74 Dashed and dotted slurs, phrasing slurs, and ties
75 have been made variable thickness, and
76 partially dashed slurs are now available:
77 @lilypond[quote,relative=2]
78 \slurDashed
79 c4( d e f) |
80 \slurDotted
81 g4( f e d) |
82 \slurHalfDashed
83 c4( d e f)
84 @end lilypond
85
86 @item
87 An eyeglasses markup was added, incidating strongly to look at the
88 conductor for instructions:
89 @lilypond[quote,relative=2]
90 \mark \markup { \eyeglasses }
91 c4_\markup{ \eyeglasses }
92 @end lilypond
93
94 @item
95 A snap-pizzicato (also known as Bartok-pizzicato) articulation was added:
96 @lilypond[quote,relative=2]
97 c4\snappizzicato
98 @end lilypond
99
100 @item
101 Tuplet number formatting functions are now available to print other fractions
102 and to add notes to the number or fraction:
103 @lilypond[quote,relative=2]
104 \once \override TupletNumber #'text =
105   #(tuplet-number::non-default-tuplet-denominator-text 7)
106 \times 2/3 { c4. c4. c4. c4. }
107
108 \once \override TupletNumber #'text =
109   #(tuplet-number::non-default-tuplet-fraction-text 12 7)
110 \times 2/3 { c4. c4. c4. c4. }
111 \once \override TupletNumber #'text =
112   #(tuplet-number::append-note-wrapper
113     (tuplet-number::non-default-tuplet-fraction-text 12 7) "8")
114 \times 2/3 { c4. c4. c4. c4. }
115
116 \once \override TupletNumber #'text =
117   #(tuplet-number::append-note-wrapper tuplet-number::calc-denominator-text "4")
118 \times 2/3 { c8 c8 c8 c8 c8 c8 }
119 \once \override TupletNumber #'text =
120   #(tuplet-number::append-note-wrapper tuplet-number::calc-fraction-text "4")
121 \times 2/3 { c8 c8 c8 c8 c8 c8 }
122
123 \once \override TupletNumber #'text =
124   #(tuplet-number::fraction-with-notes "4." "8")
125 \times 2/3 { c4. c4. c4. c4. }
126 \once \override TupletNumber #'text =
127   #(tuplet-number::non-default-fraction-with-notes 12 "8" 4 "4")
128 \times 2/3  { c4. c4. c4. c4. }
129 @end lilypond
130
131 @item
132 FretBoards now have a chordChanges property to keep repeated FretBoard objects
133 from being typeset.
134
135
136
137 @end itemize
138
139
140
141 @ifhtml
142 For older news, go to
143 @uref{http://lilypond.org/doc/v2.12/Documentation/topdocs/NEWS.html},
144 @uref{http://lilypond.org/doc/v2.10/Documentation/topdocs/NEWS.html},
145 or @uref{../,go back} to the Documentation index.
146
147
148 @end ifhtml
149
150 @bye