]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/topdocs/NEWS.tely
Merge branch 'master' of git+ssh://jneem@git.sv.gnu.org/srv/git/lilypond
[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 All line spanners are more flexible now in the configuration of their
69 end points.  This includes glissando, voice followers, text crescendos
70 and other text spanners.
71
72 @lilypond
73 \relative c'' {
74   \override Glissando #'bound-details #'right #'text = \markup { \hcenter \bold down }
75   \override Glissando #'bound-details #'right #'Y = #-4
76   \override Glissando #'bound-details #'right #'padding = #0.0
77   \override Glissando #'bound-details #'left #'arrow = ##t
78   \override Glissando #'bound-details #'left #'padding = #5.0
79   \override Glissando #'style = #'trill
80   
81   c1 \glissando c'
82 }
83 @end lilypond
84
85 This feature was sponsored by Trevor Bača.
86
87  
88 @item
89 Notes or rests, such as a typical end note, that fill an entire
90 measure are preceded by some more space.
91
92 @lilypond[ragged-right]
93 \relative c' {
94   \time 4/4
95   s1
96   c2. c4
97   \time 3/4
98   c2.
99 }
100 @end lilypond
101
102 @item All @code{\score}s in a lilypond-book fragment are now inserted
103 into the document. Also, toplevel markups don't result in an entire
104 page.
105
106 @item Alterations (such as a sharp and flat) may now be arbitrary
107 fractions. This allows some forms of microtonal music.  For example,
108 Turkish makam music uses 1/9th tone alterations.
109
110 @lilypondfile{makam.ly}
111
112
113
114 @item Tie directions may be set with @code{^~} and @code{_~}
115
116 @item Tablature now supports harmonics and slides,
117
118 @lilypond[fragment,ragged-right,relative=1]
119 \new TabVoice
120 {
121     <c g'\harmonic> d\2\glissando e\2
122 }
123 @end lilypond
124
125 This feature was sponsored by Mike Amundsen
126
127 @item Horizontal spacing now follows object outlines more
128 accurately. This allows tighter horizontal spacing.
129
130 @lilypond[fragment,ragged-right]
131 {
132   \stemUp c''4...*1/2
133   ceses'!
134 }
135 @end lilypond
136
137
138 @item Objects that belong outside of the staff are
139 now positioned automatically to avoid collisions.
140
141 @lilypond[fragment,ragged-right,relative=1]
142   c''
143   \once \override TextScript #'self-alignment-X = #CENTER
144   a,^"this doesn't collide with the c"
145   b^"this goes above the previous markup"
146   a8_"this goes below the dynamic"
147   a\f
148 @end lilypond
149
150 @item Staves are spaced vertically using a skyline algorithm. This helps to avoid
151 uneven vertical spacing.
152
153 @lilypond[ragged-right]
154
155 %% todo: fix 'landscape PDF.
156 #(set-default-paper-size "a6" )
157 \header {
158   tagline = ##f
159 }
160
161 \book {
162   \score {
163     {
164       a,,1 | a'4 b' c'' d'' \break
165       \repeat unfold 2 {a' b' c'' d''} | b''''1
166     }
167   }
168 }
169 @end lilypond
170
171 @end itemize
172
173
174
175 @ifhtml
176 For older news, go to
177 @uref{http://lilypond.org/doc/v2.10/Documentation/topdocs/NEWS.html},
178 or @uref{../,go back} to the Documentation index.
179
180
181 @end ifhtml
182
183 @bye