]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/changes.tely
Doc-de: updates from master to NR
[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 Instrument names and vocal names now take into account the extent of
67 system start delimiters in other staves for their positioning,
68 resulting in improved default alignment for left-, center- and
69 right-aligned names.
70 @lilypond[quote,indent=18\mm]
71 <<
72   \new StaffGroup <<
73     \new GrandStaff <<
74       \new Staff {
75         \set Staff.instrumentName = #"Piccolo"
76         c''1
77       }
78       \new Staff {
79         \set Staff.instrumentName = #"Flute"
80         c''1
81       }
82     >>
83     \new Staff {
84       \set Staff.instrumentName = #"Bassoon"
85       \clef tenor
86       c'1
87     }
88   >>
89   \new PianoStaff <<
90     \set PianoStaff.instrumentName = #"Piano"
91     \context Staff = "up" {
92       c'1
93     }
94     \context Staff = "down" {
95       \clef bass
96       c1
97     }
98   >>
99 >>
100 @end lilypond
101
102 @item
103 Braces in markup can now be selected by point size using the markup commands
104 @code{\left-brace} and @code{\right-brace}.
105 @lilypond[quote]
106 \markup {
107   \left-brace #35
108   \hspace #2
109   \right-brace #45
110 }
111 @end lilypond
112
113 @item
114 Intermediate .ps files which are created by LilyPond
115 during compilation are now deleted by default.  To keep them,
116 add the following line to your input files:
117 @example
118 #(ly:set-option 'delete-intermediate-files #f)
119 @end example
120
121 @item
122 Dashed and dotted slurs, phrasing slurs, and ties
123 have been made variable thickness, and
124 partially dashed slurs are now available:
125 @lilypond[quote,relative=2]
126 \slurDashed
127 c4( d e f) |
128 \slurDotted
129 g4( f e d) |
130 \slurHalfDashed
131 c4( d e f)
132 @end lilypond
133
134 @item
135 An eyeglasses markup was added, indicating strongly to look at the
136 conductor for instructions:
137 @lilypond[quote,relative=2]
138 \mark \markup { \eyeglasses }
139 c4_\markup{ \eyeglasses }
140 @end lilypond
141
142 @item
143 A snap-pizzicato (also known as Bartok-pizzicato) articulation was added:
144 @lilypond[quote,relative=2]
145 c4\snappizzicato
146 @end lilypond
147
148 @item
149 Tuplet number formatting functions are now available to print other fractions
150 and to add notes to the number or fraction:
151 @lilypond[quote,relative=2]
152 \once \override TupletNumber #'text =
153   #(tuplet-number::non-default-tuplet-denominator-text 7)
154 \times 2/3 { c4. c4. c4. c4. }
155
156 \once \override TupletNumber #'text =
157   #(tuplet-number::non-default-tuplet-fraction-text 12 7)
158 \times 2/3 { c4. c4. c4. c4. }
159 \once \override TupletNumber #'text =
160   #(tuplet-number::append-note-wrapper
161     (tuplet-number::non-default-tuplet-fraction-text 12 7) "8")
162 \times 2/3 { c4. c4. c4. c4. }
163
164 \once \override TupletNumber #'text =
165   #(tuplet-number::append-note-wrapper tuplet-number::calc-denominator-text "4")
166 \times 2/3 { c8 c8 c8 c8 c8 c8 }
167 \once \override TupletNumber #'text =
168   #(tuplet-number::append-note-wrapper tuplet-number::calc-fraction-text "4")
169 \times 2/3 { c8 c8 c8 c8 c8 c8 }
170
171 \once \override TupletNumber #'text =
172   #(tuplet-number::fraction-with-notes "4." "8")
173 \times 2/3 { c4. c4. c4. c4. }
174 \once \override TupletNumber #'text =
175   #(tuplet-number::non-default-fraction-with-notes 12 "8" 4 "4")
176 \times 2/3  { c4. c4. c4. c4. }
177 @end lilypond
178
179 @item
180 FretBoards now have a chordChanges property to keep repeated FretBoard objects
181 from being typeset.
182
183
184
185 @end itemize
186
187
188
189 @ifhtml
190 For older news, go to
191 @uref{http://lilypond.org/doc/v2.12/Documentation/topdocs/NEWS.html},
192 @uref{http://lilypond.org/doc/v2.10/Documentation/topdocs/NEWS.html},
193 or @uref{../,go back} to the Documentation index.
194
195
196 @end ifhtml
197
198 @bye