]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/topdocs/NEWS.tely
Merge with master
[lilypond.git] / Documentation / topdocs / NEWS.tely
1 \input texinfo @c -*- coding: utf-8; mode: texinfo; -*-
2 @setfilename NEWS.info
3 @settitle NEWS
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 @ifnottex
36 @node Top
37 @top
38 @end ifnottex
39 @unnumbered New features in 2.11 since 2.10
40
41 @ifhtml
42 This document is also available in @uref{NEWS.pdf,PDF}. It's part of
43 the @uref{../,LilyPond Documentation} 
44 @end ifhtml
45
46
47
48
49 @itemize @bullet
50
51 @ignore
52
53 HINTS
54
55 * only show verbatim input for syntax/input changes
56
57 * try to be as brief possible in those cases
58
59 * don't try to provide real-world examples, they often get too big,
60 which scares away people.
61
62 * Write complete sentences.
63
64 * only show user-visible changes. 
65
66 @end ignore
67
68 @item
69 Notes or rests, such as a typical end note, that fill an entire
70 measure are preceded by some more space.
71
72 @lilypond[ragged-right]
73 \relative c' {
74   \time 4/4
75   s1
76   c2. c4
77   \time 3/4
78   c2.
79 }
80 @end lilypond
81
82 @item All @code{\score}s in a lilypond-book fragment are now inserted
83 into the document. Also, toplevel markups don't result in an entire
84 page.
85
86 @item Alterations (such as a sharp and flat) may now be arbitrary
87 fractions. This allows some forms of microtonal music.  For example,
88 Turkish makam music uses 1/9th tone alterations.
89
90 @lilypondfile{makam.ly}
91
92
93
94 @item Tie directions may be set with @code{^~} and @code{_~}
95
96 @item Tablature now supports harmonics and slides,
97
98 @lilypond[fragment,ragged-right,relative=1]
99 \new TabVoice
100 {
101     <c g'\harmonic> d\2\glissando e\2
102 }
103 @end lilypond
104
105 This feature was sponsored by Mike Amundsen
106
107 @item Horizontal spacing now follows object outlines more
108 accurately. This allows tighter horizontal spacing.
109
110 @lilypond[fragment,ragged-right]
111 {
112   \stemUp c''4...*1/2
113   ceses'!
114 }
115 @end lilypond
116
117
118 @item Objects that belong outside of the staff are
119 now positioned automatically to avoid collisions.
120
121 @lilypond[fragment,ragged-right,relative=1]
122   c''
123   \once \override TextScript #'self-alignment-X = #CENTER
124   a,^"this doesn't collide with the c"
125   b^"this goes above the previous markup"
126   a8_"this goes below the dynamic"
127   a\f
128 @end lilypond
129
130 @item Staves are spaced vertically using a skyline algorithm. This helps to avoid
131 uneven vertical spacing.
132
133 @lilypond[ragged-right]
134
135 %% todo: fix 'landscape PDF.
136 #(set-default-paper-size "a6" )
137 \header {
138   tagline = ##f
139 }
140
141 \book {
142   \score {
143     {
144       a,,1 | a'4 b' c'' d'' \break
145       \repeat unfold 2 {a' b' c'' d''} | b''''1
146     }
147   }
148 }
149 @end lilypond
150
151 @end itemize
152
153
154
155 @ifhtml
156 For older news, go to
157 @uref{http://lilypond.org/doc/v2.10/Documentation/topdocs/NEWS.html},
158 or @uref{../,go back} to the Documentation index.
159
160
161 @end ifhtml
162
163 @bye