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