]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/tweaks.itely
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / Documentation / user / tweaks.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @node Tweaking output
3 @chapter Tweaking output
4
5 This chapter discusses how to modify output.  LilyPond is extremely
6 configurable; virtually every fragment of output may be changed.
7
8
9 @menu
10 * Moving objects::              
11 * Fixing overlapping notation::  
12 * Common tweaks::               
13 * Default files::               
14 * Advanced tweaks with Scheme::  
15 @end menu
16
17
18 @node Moving objects
19 @section Moving objects
20
21 This may come as a surprise, but LilyPond is not perfect.  Some notation
22 elements can overlap.  This is unfortunate, but (in most cases) is easily
23 solved.
24
25 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
26 e4^\markup{ \italic ritenuto } g b e
27 @end lilypond
28
29 @cindex padding
30
31 The easiest solution is to increase the distance between the object
32 (in this case text, but it could easily be fingerings or dynamics
33 instead) and the note.  In LilyPond, this is called the
34 @code{padding} property; it is measured in staff spaces.  For most
35 objects, this value is around 1.0 or less (it varies with each
36 object). We want to increase it, so let's try 1.5
37
38 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
39 \once \override TextScript #'padding = #1.5
40 e4^\markup{ \italic ritenuto } g b e
41 @end lilypond
42
43 That looks better, but it isn't quite big enough.  After experimenting
44 with a few values, we think 2.3 is the best number in this case.  However,
45 this number is merely the result of experimentation and my personal
46 taste in notation.  Try the above example with 2.3... but also try higher
47 (and lower) numbers.  Which do you think looks the best?
48
49 The @code{staff-padding} property is closely related.  @code{padding}
50 controls the minimum amount of space between an object and the nearest
51 other object (generally the note or the staff lines);
52 @code{staff-padding} controls the minimum amount of space between an
53 object and the staff.  This is a subtle difference, but you can see
54 the behavior here.
55
56 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
57 c4^"piu mosso" b a b
58 \once \override TextScript #'padding = #2.6
59 c4^"piu mosso" d e f
60 \once \override TextScript #'staff-padding = #2.6
61 c4^"piu mosso" fis a g
62 \break
63 c,,4^"piu mosso" b a b
64 \once \override TextScript #'padding = #2.6
65 c4^"piu mosso" d e f
66 \once \override TextScript #'staff-padding = #2.6
67 c4^"piu mosso" fis a g
68 @end lilypond
69
70 @cindex extra-offset
71
72 Another solution gives us complete control over placing the object -- we
73 can move it horizontally or vertically.  This is done with the
74 @code{extra-offset} property.  It is slightly more complicated and can
75 cause other problems.  When we move objects with @code{extra-offset},
76 the movement is done after LilyPond has placed all other objects.  This
77 means
78 that the result can overlap with other objects.
79
80 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
81 \once \override TextScript #'extra-offset = #'( 1.0 . -1.0 )
82 e4^\markup{ \italic ritenuto } g b e
83 @end lilypond
84
85 With @code{extra-offset}, the first number controls the horizontal
86 movement (left is negative); the second number controls the vertical
87 movement (up is positive).  After a bit of experimenting, we decided
88 that these values look good
89
90 @lilypond[quote,fragment,ragged-right,verbatim,relative=2]
91 \once \override TextScript #'extra-offset = #'( -1.6 . 1.0 )
92 e4^\markup{ \italic ritenuto } g b e
93 @end lilypond
94
95 @noindent
96 Again, these numbers are simply the result of a few experiments and
97 looking at the output.  You might prefer the text to be slightly higher,
98 or to the left, or whatever.  Try it and look at the result!
99
100 One final warning: in this section, we used
101
102 @example
103 \once \override TextScript @dots{}
104 @end example
105
106 This tweaks the display of text for the next note.  If the note has
107 no text, this tweak does nothing (and does @strong{not} wait until
108 the next bit of text).  To change the behavior of everything after
109 the command, omit the @code{\once}.  To stop this tweak, use a
110 @code{\revert}.  This is explained in depth in
111 @ref{The \override command}.
112
113 @lilypond[quote,fragment,ragged-right,verbatim,relative=3]
114 c4^"piu mosso" b
115 \once \override TextScript #'padding = #2.6
116   a4 b
117 c4^"piu mosso" d e f
118 \once \override TextScript #'padding = #2.6
119 c4^"piu mosso" d e f
120 c4^"piu mosso" d e f
121 \break
122 \override TextScript #'padding = #2.6
123 c4^"piu mosso" d e f
124 c4^"piu mosso" d e f
125 \revert TextScript #'padding
126 c4^"piu mosso" d e f
127 @end lilypond
128
129 @seealso
130
131 This manual: @ref{The \override command}, @ref{Common tweaks}.
132
133
134 @node Fixing overlapping notation
135 @section Fixing overlapping notation
136
137 In @ref{Moving objects}, we saw how to move a @code{TextScript}
138 object.  The same mechanism can be used to move other types of
139 objects; simply replace @code{TextScript} with the name of
140 another object.
141
142 To find the object name, look at the ``@strong{see also}'' at
143 bottom of the relevant documentation page.  For example, at
144 the bottom of @ref{Dynamics}, we see
145
146 @quotation
147 @seealso
148
149 Program reference: @internalsref{DynamicText}, @internalsref{Hairpin}.
150 Vertical positioning of these symbols is handled by
151 @internalsref{DynamicLineSpanner}.
152 @end quotation
153
154 @noindent
155 So to move dynamics around, we use
156
157 @example
158 \override DynamicLineSpanner #'padding = #2.0
159 @end example
160
161 We cannot list every object, but here is a list of the most
162 common objects.
163
164 @multitable @columnfractions .33 .66
165 @headitem Object type           @tab Object name
166 @item Dynamics                  @tab @code{DynamicLineSpanner}
167 @item Ties                      @tab @code{Tie}
168 @item Slurs                     @tab @code{Slur}
169 @item Articulations             @tab @code{Script}
170 @item Fingerings                @tab @code{Fingering}
171 @item Text e.g. @code{^"text"}  @tab @code{TextScript}
172 @item Rehearsal / Text marks    @tab @code{RehearsalMark}
173 @end multitable
174
175
176 @node Common tweaks
177 @section Common tweaks
178
179 Some overrides are so common that predefined commands are provided as
180 short-cuts, such as @code{\slurUp} and @code{\stemDown}.  These
181 commands are described in the Notation Reference under the appropriate
182 sections.
183
184 The complete list of modifications available for each type of
185 object (like slurs or beams) are documented in the Program
186 Reference.  However, many layout objects share properties which can be
187 used to apply generic tweaks.
188
189 @itemize @bullet
190
191 @cindex padding
192
193 @item
194 The @code{padding} property can be set to increase
195 (or decrease) the distance between symbols that are printed
196 above or below notes.  This applies to all objects with
197 @code{side-position-interface}.
198
199 @lilypond[quote,fragment,relative=1,verbatim]
200 c2\fermata
201 \override Script #'padding = #3
202 b2\fermata
203 @end lilypond
204
205 @lilypond[quote,fragment,relative=1,verbatim]
206 % This will not work, see below:
207 \override MetronomeMark #'padding = #3
208 \tempo 4=120
209 c1
210 % This works:
211 \override Score.MetronomeMark #'padding = #3
212 \tempo 4=80
213 d1
214 @end lilypond
215
216 Note in the second example how important it is to figure out what
217 context handles a certain object.  Since the @code{MetronomeMark} object
218 is handled in the @code{Score} context, property changes in the
219 @code{Voice} context will not be noticed.  For more details, see
220 @ref{Constructing a tweak}.
221
222 @cindex extra-offset
223
224 @item
225 The @code{extra-offset} property moves objects around
226 in the output; it requires a pair of numbers.  The first number
227 controls horizontal movement; a positive number will
228 move the object to the right.  The second number controls vertical
229 movement; a positive number will move it higher.  The
230 @code{extra-offset} property is a low-level feature: the
231 formatting engine is completely oblivious to these offsets.
232
233 In the following example, the second fingering is moved a little to
234 the left, and 1.8 staff space downwards:
235
236 @lilypond[quote,fragment,relative=1,verbatim]
237 \stemUp
238 f-5
239 \once \override Fingering
240     #'extra-offset = #'(-0.3 . -1.8)
241 f-5
242 @end lilypond
243
244  @item
245 Setting the @code{transparent} property will cause an object to be printed
246 in `invisible ink': the object is not printed, but all its other
247 behavior is retained.  The object still takes up space, it takes part in
248 collisions, and slurs, ties, and beams can be attached to it.
249
250 @cindex transparent objects
251 @cindex removing objects
252 @cindex hiding objects
253 @cindex invisible objects
254 The following example demonstrates how to connect different voices
255 using ties.  Normally, ties only connect two notes in the same
256 voice.  By introducing a tie in a different voice,
257
258 @lilypond[quote,fragment,relative=2]
259 << {
260   b8~ b8\noBeam
261 } \\ {
262   b[ g8]
263 } >>
264 @end lilypond
265
266 @noindent
267 and blanking the first up-stem in that voice, the tie appears to cross
268 voices:
269
270 @lilypond[quote,fragment,relative=2,verbatim]
271 << {
272   \once \override Stem #'transparent = ##t
273   b8~ b8\noBeam
274 } \\ {
275   b[ g8]
276 } >>
277 @end lilypond
278
279 @end itemize
280
281 @cindex Tweaks, distances
282 @cindex Distances
283
284 Distances in LilyPond are measured in staff-spaces, while most
285 thickness properties are measured in line-thickness.  Some
286 properties are different; for example, the thickness of beams
287 are measured in staff-spaces.  For more information, see the
288 relevant portion of the program reference.
289
290
291 @node Default files
292 @section Default files
293
294 The Program Reference documentation contains a lot of information
295 about LilyPond, but even more information can be gathered from
296 looking at the internal LilyPond files.
297
298 Some default settings (such as the definitions for
299 @code{\header@{@}}s) are stored as @code{.ly} files.  Other
300 settings (such as the definitions of markup commands) are
301 stored as @code{.scm} (Scheme) files.  Further explanation is
302 outside the scope of this manual; users should be warned that
303 a substantial amount of technical knowledge or time is required
304 to understand these files.
305
306 @itemize bullet
307
308 @item Linux: @file{@{INSTALLDIR@}/lilypond/usr/share/lilypond/current/}
309
310 @item OSX:
311 @file{@{INSTALLDIR@}/LilyPond.app/Contents/Resources/share/lilypond/current/}.
312 To access this, either @code{cd} into this directory from
313 the Terminal, or control-click on the LilyPond application
314 and select "Show Package Contents".
315
316 @item Windows: @file{@{INSTALLDIR@}/LilyPond/usr/share/lilypond/current/}
317
318 @end itemize
319
320 The @file{ly/} and @file{scm/} directories will be of
321 particular interest.  Files such as @file{ly/property-init.ly} and
322 @file{ly/declarations-init.ly} define all the common tweaks.
323
324
325 @node Advanced tweaks with Scheme
326 @section Advanced tweaks with Scheme
327
328 We have seen how LilyPond output can be heavily modified using
329 commands like
330 @code{\override TextScript #'extra-offset = ( 1 . -1)}.  But
331 we have even more power if we use Scheme.  For a full explantion
332 of this, see the @ref{Scheme tutorial} and
333 @ref{Interfaces for programmers}.
334
335 We can use Scheme to simply @code{\override} commands,
336
337 @lilypond[quote,verbatim,ragged-right]
338 padText = #(define-music-function (parser location padding) (number?)
339 #{
340   \once \override TextScript #'padding = #$padding
341 #})
342
343 \relative c''' {
344   c4^"piu mosso" b a b
345   \padText #1.8
346   c4^"piu mosso" d e f
347   \padText #2.6
348   c4^"piu mosso" fis a g
349 }
350 @end lilypond
351
352 We can use it to create new commands,
353
354 @lilypond[quote,verbatim,ragged-right]
355 tempoMark = #(define-music-function (parser location padding marktext)
356                                     (number? string?)
357 #{
358   \once \override Score . RehearsalMark #'padding = $padding
359   \once \override Score . RehearsalMark #'no-spacing-rods = ##t
360   \mark \markup { \bold $marktext }
361 #})
362
363 \relative c'' {
364 c2 e
365 \tempoMark #3.0 #"Allegro"
366 g c
367 }
368 @end lilypond
369
370 Even music expressions can be passed in.
371
372 @lilypond[quote,verbatim,ragged-right]
373 pattern = #(define-music-function (parser location x y) (ly:music? ly:music?)
374 #{
375   $x e8 a b $y b a e
376 #})
377
378 \relative c''{
379   \pattern c8 c8\f
380   \pattern {d16 dis} { ais16-> b\p }
381 }
382 @end lilypond
383