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