]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/changes.tely
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[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 Braces in markup can now be selected by point size using the markup commands
67 @code{\left-brace} and @code{\right-brace}.
68 @lilypond[quote]
69 \markup {
70   \left-brace #35
71   \hspace #2
72   \right-brace #45
73 }
74 @end lilypond
75
76 @item
77 Intermediate .ps files which are created by LilyPond
78 during compilation are now deleted by default.  To keep them,
79 add the following line to your input files:
80 @example
81 #(ly:set-option 'delete-intermediate-files #f)
82 @end example
83
84 @item
85 Dashed and dotted slurs, phrasing slurs, and ties
86 have been made variable thickness, and
87 partially dashed slurs are now available:
88 @lilypond[quote,relative=2]
89 \slurDashed
90 c4( d e f) |
91 \slurDotted
92 g4( f e d) |
93 \slurHalfDashed
94 c4( d e f)
95 @end lilypond
96
97 @item
98 An eyeglasses markup was added, incidating strongly to look at the
99 conductor for instructions:
100 @lilypond[quote,relative=2]
101 \mark \markup { \eyeglasses }
102 c4_\markup{ \eyeglasses }
103 @end lilypond
104
105 @item
106 A snap-pizzicato (also known as Bartok-pizzicato) articulation was added:
107 @lilypond[quote,relative=2]
108 c4\snappizzicato
109 @end lilypond
110
111 @item
112 Tuplet number formatting functions are now available to print other fractions
113 and to add notes to the number or fraction:
114 @lilypond[quote,relative=2]
115 \once \override TupletNumber #'text =
116   #(tuplet-number::non-default-tuplet-denominator-text 7)
117 \times 2/3 { c4. c4. c4. c4. }
118
119 \once \override TupletNumber #'text =
120   #(tuplet-number::non-default-tuplet-fraction-text 12 7)
121 \times 2/3 { c4. c4. c4. c4. }
122 \once \override TupletNumber #'text =
123   #(tuplet-number::append-note-wrapper
124     (tuplet-number::non-default-tuplet-fraction-text 12 7) "8")
125 \times 2/3 { c4. c4. c4. c4. }
126
127 \once \override TupletNumber #'text =
128   #(tuplet-number::append-note-wrapper tuplet-number::calc-denominator-text "4")
129 \times 2/3 { c8 c8 c8 c8 c8 c8 }
130 \once \override TupletNumber #'text =
131   #(tuplet-number::append-note-wrapper tuplet-number::calc-fraction-text "4")
132 \times 2/3 { c8 c8 c8 c8 c8 c8 }
133
134 \once \override TupletNumber #'text =
135   #(tuplet-number::fraction-with-notes "4." "8")
136 \times 2/3 { c4. c4. c4. c4. }
137 \once \override TupletNumber #'text =
138   #(tuplet-number::non-default-fraction-with-notes 12 "8" 4 "4")
139 \times 2/3  { c4. c4. c4. c4. }
140 @end lilypond
141
142 @item
143 FretBoards now have a chordChanges property to keep repeated FretBoard objects
144 from being typeset.
145
146
147
148 @end itemize
149
150
151
152 @ifhtml
153 For older news, go to
154 @uref{http://lilypond.org/doc/v2.12/Documentation/topdocs/NEWS.html},
155 @uref{http://lilypond.org/doc/v2.10/Documentation/topdocs/NEWS.html},
156 or @uref{../,go back} to the Documentation index.
157
158
159 @end ifhtml
160
161 @bye