]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/working.itely
Doc-de: update macros.itely and nitpicks
[lilypond.git] / Documentation / user / working.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @c This file is part of lilypond-learning.tely
3 @ignore
4     Translation of GIT committish: FILL-IN-HEAD-COMMITTISH
5
6     When revising a translation, copy the HEAD committish of the
7     version that you are working on.  See TRANSLATION for details.
8 @end ignore
9
10 @c \version "2.12.0"
11
12 @node Working on LilyPond projects
13 @chapter Working on LilyPond projects
14
15 This section explains how to solve or avoid certain common
16 problems.  If you have programming experience, many of these
17 tips may seem obvious, but it is still advisable to read
18 this chapter.
19
20
21 @menu
22 * Suggestions for writing LilyPond input files::
23 * When things don't work::
24 * Scores and parts::
25 * Make and Makefiles::
26 @end menu
27
28
29 @node Suggestions for writing LilyPond input files
30 @section Suggestions for writing LilyPond input files
31
32 Now you're ready to begin writing larger LilyPond input files --
33 not just the little examples in the tutorial, but whole pieces.
34 But how should you go about doing it?
35
36 As long as LilyPond can understand your input files and produce
37 the output that you want, it doesn't matter what your input files
38 look like.  However, there are a few other things to consider when
39 writing LilyPond input files.
40
41 @itemize
42 @item What if you make a mistake?  The structure of a LilyPond
43 file can make certain errors easier (or harder) to find.
44
45 @item What if you want to share your input files with somebody
46 else?  In fact, what if you want to alter your own input files in
47 a few years?  Some LilyPond input files are understandable at
48 first glance; others may leave you scratching your head
49 for an hour.
50
51 @item What if you want to upgrade your LilyPond file for use
52 with a later version of LilyPond?  The input syntax changes
53 occasionally as LilyPond improves.  Most changes can be
54 done automatically with @code{convert-ly}, but some changes
55 might require manual assistance.  LilyPond input files can be
56 structured in order to be easier (or harder) to update.
57
58 @end itemize
59
60 @menu
61 * General suggestions::
62 * Typesetting existing music::
63 * Large projects::
64 * Saving typing with variables and functions::
65 * Style sheets::
66 @end menu
67
68
69 @node General suggestions
70 @subsection General suggestions
71
72 Here are a few suggestions that can help you to avoid or fix
73 problems:
74
75 @itemize
76 @item @strong{Include @code{\version} numbers in every file}.  Note that all
77 templates contain @code{\version} information.  We
78 highly recommend that you always include the @code{\version}, no matter
79 how small your file is.  Speaking from personal experience, it's
80 quite frustrating to try to remember which version of LilyPond you were
81 using a few years ago.  @command{convert-ly} requires you to declare
82 which version of LilyPond you used.
83
84 @item @strong{Include checks}: @ruser{Bar and bar number checks},
85 @ruser{Octave checks}.  If you include checks every so often, then
86 if you make a mistake, you can pinpoint it quicker.  How often is
87 @q{every so often}?  It depends on the complexity of the music.
88 For very simple music, perhaps just once or twice.  For very
89 complex music, perhaps every bar.
90
91 @item @strong{One bar per line of text}.  If there is anything complicated,
92 either in the music
93 itself or in the output you desire, it's often good to write only one bar
94 per line.  Saving screen space by cramming eight bars per line just isn't
95 worth it if you have to @q{debug} your input files.
96
97 @item @strong{Comment your input files}.  Use either bar numbers
98 (every so often) or
99 references to musical themes (@q{second theme in violins,} @q{fourth
100 variation,} etc.).  You may not need comments when you're writing the piece
101 for the first time, but if you want to go back to change something two or
102 three years later, or if you pass the source over to a friend, it will
103 be much more
104 challenging to determine your intentions or how your file is structured if
105 you didn't comment the file.
106
107 @item @strong{Indent your braces}.  A lot of problems are caused by an
108 imbalance
109 in the number of @code{@{} and @code{@}}.
110
111 @item @strong{Explicitly add durations} at the beginnings of sections
112 and variables.  If you specify @code{c4 d e} at the beginning of a
113 phrase (instead of just @code{c d e}) you can save yourself some
114 problems if you rearrange your music later.
115
116 @item @strong{Separate tweaks} from music definitions.  See
117 @ref{Saving typing with variables and functions}, and
118 @ref{Style sheets}.
119
120 @end itemize
121
122
123 @node Typesetting existing music
124 @subsection Typesetting existing music
125
126 If you are entering music from an existing score (i.e., typesetting a
127 piece of existing sheet music),
128
129 @itemize
130
131 @item Enter one manuscript (the physical copy) system at a time (but still
132 only one bar per line of text), and
133 check each system when you finish it.  You may use the
134 @code{showLastLength} or @code{showFirstLength} properties to speed up
135 processing -- see @ruser{Skipping corrected music}.
136
137 @item Define @code{mBreak = @{ \break @}} and insert @code{\mBreak}
138 in the input file whenever the manuscript has a line break.  This
139 makes it much easier to compare the LilyPond music to the original
140 music.  When you are finished proofreading your score, you may
141 define @code{mBreak = @{ @}} to remove all those line breaks.  This
142 will allow LilyPond to place line breaks wherever it feels are
143 best.
144
145 @item When entering a part for a transposing instrument into a
146 variable, it is recommended that the notes are wrapped in
147
148 @example
149 \transpose c natural-pitch @{...@}
150 @end example
151 (where @code{natural-pitch} is the open pitch of the instrument) so
152 that the music in the variable is effectively in C. You can transpose
153 it back again when the variable is used, if required, but you might
154 not want to (e.g., when printing a score in concert pitch,
155 converting a trombone part from treble to bass clef, etc.)
156 Mistakes in transpositions are less likely if all the music in
157 variables is at a consistent pitch.
158
159 Also, only ever transpose to/from C. That means that the only other
160 keys you will use are the natural pitches of the instruments - bes
161 for a B-flat trumpet, aes for an A-flat clarinet, etc.
162
163 @end itemize
164
165
166 @node Large projects
167 @subsection Large projects
168
169 When working on a large project, having a clear structure to your
170 lilypond input files becomes vital.
171
172 @itemize
173
174 @item @strong{Use a variable for each voice}, with a minimum of
175 structure inside the definition.  The structure of the
176 @code{\score} section is the most likely thing to change;
177 the @code{violin} definition is extremely unlikely to change
178 in a new version of LilyPond.
179
180 @example
181 violin = \relative c'' @{
182 g4 c'8. e16
183 @}
184 ...
185 \score @{
186   \new GrandStaff @{
187     \new Staff @{
188       \violin
189     @}
190   @}
191 @}
192 @end example
193
194 @item @strong{Separate tweaks from music definitions}.  This
195 point was made previously, but for large
196 projects it is absolutely vital.  We might need to change
197 the definition of @code{fthenp}, but then we only need
198 to do this once, and we can still avoid touching anything
199 inside @code{violin}.
200
201 @example
202 fthenp = _\markup@{
203   \dynamic f \italic \small @{ 2nd @} \hspace #0.1 \dynamic p @}
204 violin = \relative c'' @{
205 g4\fthenp c'8. e16
206 @}
207 @end example
208
209 @end itemize
210
211
212 @node Saving typing with variables and functions
213 @subsection Saving typing with variables and functions
214
215 @cindex variables
216 @cindex variables
217
218 By this point, you've seen this kind of thing:
219
220 @lilypond[quote,verbatim,ragged-right]
221 hornNotes = \relative c'' { c4 b dis c }
222 \score {
223   {
224     \hornNotes
225   }
226 }
227 @end lilypond
228
229 You may even realize that this could be useful in minimalist music:
230
231 @lilypond[quote,verbatim,ragged-right]
232 fragmentA = \relative c'' { a4 a8. b16 }
233 fragmentB = \relative c'' { a8. gis16 ees4 }
234 violin = \new Staff { \fragmentA \fragmentA \fragmentB \fragmentA }
235 \score {
236   {
237     \violin
238   }
239 }
240 @end lilypond
241
242 However, you can also use these variables (also known as
243 variables, macros, or (user-defined) command) for tweaks:
244
245 @lilypond[quote,verbatim,ragged-right]
246 dolce = \markup{ \italic \bold dolce }
247 padText = { \once \override TextScript #'padding = #5.0 }
248 fthenp=_\markup{ \dynamic f \italic \small { 2nd } \hspace #0.1 \dynamic p }
249 violin = \relative c'' {
250   \repeat volta 2 {
251     c4._\dolce b8 a8 g a b |
252     \padText
253     c4.^"hi there!" d8 e' f g d |
254     c,4.\fthenp b8 c4 c-. |
255   }
256 }
257 \score {
258   {
259     \violin
260   }
261 \layout{ragged-right=##t}
262 }
263 @end lilypond
264
265 These variables are obviously useful for saving
266 typing.  But they're worth considering even if you
267 only use them once -- they reduce complexity.  Let's
268 look at the previous example without any
269 variables.  It's a lot harder to read, especially
270 the last line.
271
272 @example
273 violin = \relative c'' @{
274   \repeat volta 2 @{
275     c4._\markup@{ \italic \bold dolce @} b8 a8 g a b |
276     \once \override TextScript #'padding = #5.0
277     c4.^"hi there!" d8 e' f g d |
278     c,4.\markup@{ \dynamic f \italic \small @{ 2nd @}
279       \hspace #0.1 \dynamic p @} b8 c4 c-. |
280   @}
281 @}
282 @end example
283
284 @c TODO Replace the following with a better example  -td
285 @c Skylining handles this correctly without padText
286
287 So far we've seen static substitution -- when LilyPond
288 sees @code{\padText}, it replaces it with the stuff that
289 we've defined it to be (ie the stuff to the right of
290 @code{padtext=}).
291
292 LilyPond can handle non-static substitution, too (you
293 can think of these as functions).
294
295 @lilypond[quote,verbatim,ragged-right]
296 padText =
297 #(define-music-function (parser location padding) (number?)
298   #{
299     \once \override TextScript #'padding = #$padding
300   #})
301
302 \relative c''' {
303   c4^"piu mosso" b a b
304   \padText #1.8
305   c4^"piu mosso" d e f
306   \padText #2.6
307   c4^"piu mosso" fis a g
308 }
309 @end lilypond
310
311 Using variables is also a good way to reduce work if the
312 LilyPond input syntax changes (see @ref{Updating old input files}).  If
313 you have a single definition (such as @code{\dolce}) for all your
314 input files (see @ref{Style sheets}), then if the syntax changes, you
315 only need to update your single @code{\dolce} definition,
316 instead of making changes throughout every @code{.ly} file.
317
318
319 @node Style sheets
320 @subsection Style sheets
321
322 The output that LilyPond produces can be heavily modified; see
323 @ref{Tweaking output}, for details.  But what if you have many
324 input files that you want to apply your tweaks to?  Or what if you
325 simply want to separate your tweaks from the actual music?  This
326 is quite easy to do.
327
328 Let's look at an example.  Don't worry if you don't understand
329 the parts with all the @code{#()}.  This is explained in
330 @ref{Advanced tweaks with Scheme}.
331
332 @lilypond[quote,verbatim,ragged-right]
333 mpdolce = #(make-dynamic-script (markup #:hspace 0 #:translate '(5 . 0)
334   #:line(#:dynamic "mp" #:text #:italic "dolce" )))
335
336 inst = #(define-music-function (parser location string) (string?)
337   (make-music
338     'TextScriptEvent
339     'direction UP
340     'text (markup #:bold (#:box string))))
341
342 \relative c'' {
343   \tempo 4=50
344   a4.\mpdolce d8 cis4--\glissando a | b4 bes a2
345   \inst "Clarinet"
346   cis4.\< d8 e4 fis | g8(\! fis)-. e( d)-. cis2
347 }
348 @end lilypond
349
350 There are some problems with overlapping output; we'll fix those using
351 the techniques in @ref{Moving objects}.  But let's also
352 do something about the @code{mpdolce} and @code{inst}
353 definitions.  They produce the output we desire, but we might want
354 to use them in another piece.  We could simply copy-and-paste them
355 at the top of every file, but that's an annoyance.  It also leaves
356 those definitions in our input files, and I personally find all
357 the @code{#()} somewhat ugly.  Let's hide them in another file:
358
359 @example
360 %%% save this to a file called "definitions.ily"
361 mpdolce = #(make-dynamic-script (markup #:hspace 0 #:translate '(5 . 0)
362   #:line(#:dynamic "mp" #:text #:italic "dolce" )))
363
364 inst = #(define-music-function (parser location string) (string?)
365   (make-music
366     'TextScriptEvent
367     'direction UP
368     'text (markup #:bold (#:box string))))
369 @end example
370
371 We will refer to this file using the @code{\include} command near
372 the top of the music file. (The extension @code{.ily} is used to
373 distinguish this included file, which is not meant to be compiled
374 on its own, from the main file.)
375 Now let's modify our music (let's save this file as @file{"music.ly"}).
376
377 @c  We have to do this awkward example/lilypond-non-verbatim
378 @c  because we can't do the \include stuff in the manual.
379
380 @example
381 \include "definitions.ily"
382
383 \relative c'' @{
384   \tempo 4=50
385   a4.\mpdolce d8 cis4--\glissando a | b4 bes a2
386   \inst "Clarinet"
387   cis4.\< d8 e4 fis | g8(\! fis)-. e( d)-. cis2
388 @}
389 @end example
390
391 @lilypond[quote,ragged-right]
392 mpdolce = #(make-dynamic-script (markup #:hspace 0 #:translate '(5 . 0)
393   #:line(#:dynamic "mp" #:text #:italic "dolce" )))
394
395 inst = #(define-music-function (parser location string) (string?)
396   (make-music
397     'TextScriptEvent
398     'direction UP
399     'text (markup #:bold (#:box string))))
400
401 \relative c'' {
402   \tempo 4=50
403   a4.\mpdolce d8 cis4--\glissando a | b4 bes a2
404   \inst "Clarinet"
405   cis4.\< d8 e4 fis | g8(\! fis)-. e( d)-. cis2
406 }
407 @end lilypond
408
409 That looks better, but let's make a few changes.  The glissando is hard
410 to see, so let's make it thicker and closer to the note heads.  Let's
411 put the metronome marking above the clef, instead of over the first
412 note.  And finally, my composition professor hates @q{C} time signatures,
413 so we'd better make that @q{4/4} instead.
414
415 Don't change @file{music.ly}, though.  Replace our @file{definitions.ily}
416 with this:
417
418 @example
419 %%%  definitions.ily
420 mpdolce = #(make-dynamic-script (markup #:hspace 0 #:translate '(5 . 0)
421   #:line( #:dynamic "mp" #:text #:italic "dolce" )))
422
423 inst = #(define-music-function (parser location string) (string?)
424   (make-music
425     'TextScriptEvent
426     'direction UP
427     'text (markup #:bold (#:box string))))
428
429 \layout@{
430   \context @{ \Score
431     \override MetronomeMark #'extra-offset = #'(-9 . 0)
432     \override MetronomeMark #'padding = #'3
433   @}
434   \context @{ \Staff
435     \override TimeSignature #'style = #'numbered
436   @}
437   \context @{ \Voice
438     \override Glissando #'thickness = #3
439     \override Glissando #'gap = #0.1
440   @}
441 @}
442 @end example
443
444 @lilypond[quote,ragged-right]
445 mpdolce = #(make-dynamic-script (markup #:hspace 0 #:translate '(5 . 0)
446   #:line( #:dynamic "mp" #:text #:italic "dolce" )))
447
448 inst = #(define-music-function (parser location string) (string?)
449   (make-music
450     'TextScriptEvent
451     'direction UP
452     'text (markup #:bold (#:box string))))
453
454 \layout{
455   \context { \Score
456     \override MetronomeMark #'extra-offset = #'(-9 . 0)
457     \override MetronomeMark #'padding = #'3
458   }
459   \context { \Staff
460     \override TimeSignature #'style = #'numbered
461   }
462   \context { \Voice
463     \override Glissando #'thickness = #3
464     \override Glissando #'gap = #0.1
465   }
466 }
467
468 \relative c'' {
469   \tempo 4=50
470   a4.\mpdolce d8 cis4--\glissando a | b4 bes a2
471   \inst "Clarinet"
472   cis4.\< d8 e4 fis | g8(\! fis)-. e( d)-. cis2
473 }
474 @end lilypond
475
476 That looks nicer!  But now suppose that I want to publish this
477 piece.  My composition professor doesn't like @q{C} time
478 signatures, but I'm somewhat fond of them.  Let's copy the
479 current @file{definitions.ily} to @file{web-publish.ily} and
480 modify that.  Since this music is aimed at producing a pdf which
481 will be displayed on the screen, we'll also increase the
482 overall size of the output.
483
484 @example
485 %%%  definitions.ily
486 mpdolce = #(make-dynamic-script (markup #:hspace 0 #:translate '(5 . 0)
487   #:line( #:dynamic "mp" #:text #:italic "dolce" )))
488
489 inst = #(define-music-function (parser location string) (string?)
490   (make-music
491     'TextScriptEvent
492     'direction UP
493     'text (markup #:bold (#:box string))))
494
495 #(set-global-staff-size 23)
496 \layout@{
497   \context @{ \Score
498     \override MetronomeMark #'extra-offset = #'(-9 . 0)
499     \override MetronomeMark #'padding = #'3
500   @}
501   \context @{ \Staff
502   @}
503   \context @{ \Voice
504     \override Glissando #'thickness = #3
505     \override Glissando #'gap = #0.1
506   @}
507 @}
508 @end example
509
510 @lilypond[quote,ragged-right]
511 mpdolce = #(make-dynamic-script (markup #:hspace 0 #:translate '(5 . 0)
512   #:line( #:dynamic "mp" #:text #:italic "dolce" )))
513
514 inst = #(define-music-function (parser location string) (string?)
515   (make-music
516     'TextScriptEvent
517     'direction UP
518     'text (markup #:bold (#:box string))))
519
520 #(set-global-staff-size 23)
521 \layout{
522   \context { \Score
523     \override MetronomeMark #'extra-offset = #'(-9 . 0)
524     \override MetronomeMark #'padding = #'3
525   }
526   \context { \Voice
527     \override Glissando #'thickness = #3
528     \override Glissando #'gap = #0.1
529   }
530 }
531
532 \relative c'' {
533   \tempo 4=50
534   a4.\mpdolce d8 cis4--\glissando a | b4 bes a2
535   \inst "Clarinet"
536   cis4.\< d8 e4 fis | g8(\! fis)-. e( d)-. cis2
537 }
538 @end lilypond
539
540 Now in our music, I simply replace
541 @code{\include "definitions.ily"} with
542 @code{\include "web-publish.ily"}.  Of course, we could make this
543 even more convenient.  We could make a @file{definitions.ily} file which
544 contains only the definitions of @code{mpdolce} and @code{inst}, a
545 @file{web-publish.ily} file which contains only the @code{\layout}
546 section listed above, and a @file{university.ily} file which
547 contains only the tweaks to produce the output that my professor
548 prefers.  The top of @file{music.ly} would then look like this:
549
550 @example
551 \include "definitions.ily"
552
553 %%%  Only uncomment one of these two lines!
554 \include "web-publish.ily"
555 %\include "university.ily"
556 @end example
557
558 This approach can be useful even if you are only producing
559 one set of parts.  I use half a dozen different
560 @q{style sheet} files for my projects.  I begin every music
561 file with @code{\include "../global.ily"}, which contains
562
563 @example
564 %%%   global.ily
565 \version @w{"@version{}"}
566 #(ly:set-option 'point-and-click #f)
567 \include "../init/init-defs.ly"
568 \include "../init/init-layout.ly"
569 \include "../init/init-headers.ly"
570 \include "../init/init-paper.ly"
571 @end example
572
573
574 @node When things don't work
575 @section When things don't work
576
577 @menu
578 * Updating old input files::
579 * Troubleshooting (taking it all apart)::
580 * Minimal examples::
581 @end menu
582
583 @node Updating old input files
584 @subsection Updating old input files
585
586 The LilyPond input syntax occasionally changes.  As LilyPond itself
587 improves, the syntax (input language) is modified accordingly.  Sometimes
588 these changes are made to make the input easier to read and write or
589 sometimes the changes are made to accommodate new features of LilyPond.
590
591 LilyPond comes with a file that makes this updating easier:
592 @code{convert-ly}.  For details about how to run this program, see
593 @rprogram{Updating files with convert-ly}.
594
595 Unfortunately, @code{convert-ly} cannot handle all input changes.  It
596 takes care of simple search-and-replace changes (such as @code{raggedright}
597 becoming @code{ragged-right}), but some changes are too
598 complicated.  The syntax changes that @code{convert-ly} cannot handle
599 are listed in @rprogram{Updating files with convert-ly}.
600
601 For example, in LilyPond 2.4 and earlier, accents and non-English
602 letters were entered using LaTeX -- for example,
603 @code{No\"el} (this would print the French word for
604 @q{Christmas}).  In LilyPond 2.6 and above, the special
605 @code{ë} must be entered directly into the LilyPond file as an
606 UTF-8 character.  @code{convert-ly} cannot change all the LaTeX
607 special characters into UTF-8 characters; you must manually update
608 your old LilyPond input files.
609
610
611 @node Troubleshooting (taking it all apart)
612 @subsection Troubleshooting (taking it all apart)
613
614 Sooner or later, you will write a file that LilyPond cannot
615 compile.  The messages that LilyPond gives may help
616 you find the error, but in many cases you need to do some
617 investigation to determine the source of the problem.
618
619 The most powerful tools for this purpose are the
620 single line comment (indicated by @code{%}) and the block
621 comment (indicated by @code{%@{ ... %@}}).  If you don't
622 know where a problem is, start commenting out huge portions
623 of your input file.  After you comment out a section, try
624 compiling the file again.  If it works, then the problem
625 must exist in the portion you just commented.  If it doesn't
626 work, then keep on commenting out material until you have
627 something that works.
628
629 In an extreme case, you might end up with only
630
631 @example
632 \score @{
633   <<
634     % \melody
635     % \harmony
636     % \bass
637   >>
638   \layout@{@}
639 @}
640 @end example
641
642 @noindent
643 (in other words, a file without any music)
644
645 If that happens, don't give up.  Uncomment a bit -- say,
646 the bass part -- and see if it works.  If it doesn't work,
647 then comment out all of the bass music (but leave
648 @code{\bass} in the @code{\score} uncommented.
649
650 @example
651 bass = \relative c' @{
652 %@{
653   c4 c c c
654   d d d d
655 %@}
656 @}
657 @end example
658
659 Now start slowly uncommenting more and more of the
660 @code{bass} part until you find the problem line.
661
662 Another very useful debugging technique is constructing
663 @ref{Minimal examples}.
664
665
666 @node Minimal examples
667 @subsection Minimal examples
668
669 A minimal example is an example which is as small as possible.  These
670 examples are much easier to understand than long examples.  Minimal
671 examples are used for
672
673 @itemize
674 @item Bug reports
675 @item Sending a help request to mailing lists
676 @item Adding an example to the @uref{http://lsr.dsi.unimi.it/,
677 LilyPond Snippet Repository}
678 @end itemize
679
680 To construct an example which is as small as possible, the rule is
681 quite simple: remove anything which is not necessary.  When trying to
682 remove unnecessary parts of a file, it is a very good idea to comment
683 out lines instead of deleting them.  That way, if you discover that you
684 actually @emph{do} need some lines, you can uncomment them, instead of
685 typing them in from scratch.
686
687 There are two exceptions to the @qq{as small as possible} rule:
688
689 @itemize
690 @item Include the @code{\version} number.
691 @item If possible, use @code{\paper@{ ragged-right=##t @}} at the
692 top of your example.
693 @end itemize
694
695 The whole point of a minimal example is to make it easy to read:
696
697 @itemize
698 @item Avoid using complicated notes, keys, or time signatures, unless you
699 wish to demonstrate something is about the behavior of those items.
700 @item Do not use @code{\override} commands unless that is the point of the
701 example.
702 @end itemize
703
704
705
706 @node Scores and parts
707 @section Scores and parts
708
709 TODO: this is really old stuff from the really old tutorial.
710 Rewrite, fix, etc.  Or maybe delete entirely.  -gp
711 Include section on tags   -td
712 and then move to section 5. Working ...  -td
713
714 In orchestral music, all notes are printed twice.  Once in a part for
715 the musicians, and once in a full score for the conductor.  Variables can
716 be used to avoid double work.  The music is entered once, and stored in
717 a variable.  The contents of that variable is then used to generate
718 both the part and the full score.
719
720 It is convenient to define the notes in a special file.  For example,
721 suppose that the file @file{horn-music.ly} contains the following part
722 of a horn/@/bassoon duo
723
724 @example
725 hornNotes = \relative c @{
726   \time 2/4
727   r4 f8 a cis4 f e d
728 @}
729 @end example
730
731 @noindent
732 Then, an individual part is made by putting the following in a file
733
734 @example
735 \include "horn-music.ly"
736 \header @{
737   instrument = "Horn in F"
738 @}
739
740 @{
741  \transpose f c' \hornNotes
742 @}
743 @end example
744
745 The line
746
747 @example
748 \include "horn-music.ly"
749 @end example
750
751 @noindent
752 substitutes the contents of @file{horn-music.ly} at this position in
753 the file, so @code{hornNotes} is defined afterwards.  The command
754 @code{\transpose f@tie{}c'} indicates that the argument, being
755 @code{\hornNotes}, should be transposed by a fifth upwards.  Sounding
756 @code{f} is denoted by notated @code{c'}, which corresponds with the
757 tuning of a normal French Horn in@tie{}F.  The transposition can be seen
758 in the following output
759
760 @lilypond[quote,ragged-right]
761 \transpose f c' \relative c {
762   \time 2/4
763   r4 f8 a cis4 f e d
764 }
765 @end lilypond
766
767 In ensemble pieces, one of the voices often does not play for many
768 measures.  This is denoted by a special rest, the multi-measure
769 rest.  It is entered with a capital @code{R} followed by a duration
770 (@code{1}@tie{}for a whole note, @code{2}@tie{}for a half note,
771 etc.).  By multiplying the
772 duration, longer rests can be constructed.  For example, this rest
773 takes 3@tie{}measures in 2/4 time
774
775 @example
776 R2*3
777 @end example
778
779 When printing the part, multi-rests
780 must be condensed.  This is done by setting a run-time variable
781
782 @example
783 \set Score.skipBars = ##t
784 @end example
785
786 @noindent
787 This command sets the property @code{skipBars} in the
788 @code{Score} context to true (@code{##t}).  Prepending the rest and
789 this option to the music above, leads to the following result
790
791 @lilypond[quote,ragged-right]
792 \transpose f c' \relative c {
793   \time 2/4
794   \set Score.skipBars = ##t
795   R2*3
796   r4 f8 a cis4 f e d
797 }
798 @end lilypond
799
800
801 The score is made by combining all of the music together.  Assuming
802 that the other voice is in @code{bassoonNotes} in the file
803 @file{bassoon-music.ly}, a score is made with
804
805 @example
806 \include "bassoon-music.ly"
807 \include "horn-music.ly"
808
809 <<
810   \new Staff \hornNotes
811   \new Staff \bassoonNotes
812 >>
813 @end example
814
815 @noindent
816 leading to
817
818 @lilypond[quote,ragged-right]
819 \relative c <<
820   \new Staff {
821     \time 2/4 R2*3
822     r4 f8 a cis4 f e d
823   }
824   \new Staff {
825     \clef bass
826     r4 d,8 f | gis4 c | b bes |
827     a8 e f4 | g d | gis f
828   }
829 >>
830 @end lilypond
831
832
833
834 @node Make and Makefiles
835 @section Make and Makefiles
836
837 @cindex makefiles
838 @cindex make
839
840 Pretty well all the platforms Lilypond can run on support a software
841 facility called @code{make}. This software reads a special file called a
842 @code{Makefile} that defines what files depend on what others and what
843 commands you need to give the operating system to produce one file from
844 another. For example the makefile would spell out how to produce
845 @code{ballad.pdf} and @code{ballad.midi} from @code{ballad.ly} by
846 running Lilypond.
847
848 There are times when it is a good idea to create a @code{Makefile}
849 for your project, either for your own convenience or
850 as a courtesy to others who might have access to your source files.
851 This is true for very large projects with many included files and
852 different output options (e.g. full score, parts, conductor's
853 score, piano reduction, etc.), or for projects that
854 require difficult commands to build them (such as
855 @code{lilypond-book} projects). Makefiles vary greatly in
856 complexity and flexibility, according to the needs and skills of
857 the authors. The program GNU Make comes installed on GNU/Linux
858 distributions and on MacOS X, and it is also available for Windows.
859
860 See the @strong{GNU Make Manual} for full details on using
861 @code{make}, as what follows here gives only a glimpse of what it
862 can do.
863
864 The commands to define rules in a makefile differ
865 according to platform; for instance the various forms of Linux and
866 MacOS use @code{bash}, while Windows uses @code{cmd}. Note that on
867 MacOS X, you need to configure the system to use the command-line
868 intepreter. Here are some example makefiles, with versions for both
869 Linux/MacOS and Windows.
870
871 The first example is for an orchestral work in four
872 movements with a directory structure as follows:
873
874 @example
875 Symphony/
876 |-- MIDI/
877 |-- Makefile
878 |-- Notes/
879 |   |-- cello.ily
880 |   |-- figures.ily
881 |   |-- horn.ily
882 |   |-- oboe.ily
883 |   |-- trioString.ily
884 |   |-- viola.ily
885 |   |-- violinOne.ily
886 |   `-- violinTwo.ily
887 |-- PDF/
888 |-- Parts/
889 |   |-- symphony-cello.ly
890 |   |-- symphony-horn.ly
891 |   |-- symphony-oboes.ly
892 |   |-- symphony-viola.ly
893 |   |-- symphony-violinOne.ly
894 |   `-- symphony-violinTwo.ly
895 |-- Scores/
896 |   |-- symphony.ly
897 |   |-- symphonyI.ly
898 |   |-- symphonyII.ly
899 |   |-- symphonyIII.ly
900 |   `-- symphonyIV.ly
901 `-- symphonyDefs.ily
902 @end example
903
904 The @code{.ly} files in the @code{Scores} and
905 @code{Parts} directories get their notes from @code{.ily}
906 files in the @code{Notes} directory:
907
908 @example
909 %%% top of file "symphony-cello.ly"
910 \include ../definitions.ily
911 \include ../Notes/cello.ily
912 @end example
913
914 The makefile will have targets of @code{score} (entire piece in
915 full score), @code{movements} (individual movements in full score),
916 and @code{parts} (individual parts for performers). There
917 is also a target @code{archive} that will create a tarball of
918 the source files, suitable for sharing via web or email. Here is
919 the makefile for GNU/Linux or MacOS X. It should be saved with the
920 name @code{Makefile} in the top directory of the project:
921
922 @warning{When a target or pattern rule is defined, the
923 subsequent lines must begin with tabs, not spaces.}
924
925 @example
926 # the name stem of the output files
927 piece = symphony
928 # determine how many processors are present
929 CPU_CORES=`cat /proc/cpuinfo | grep -m1 "cpu cores" | sed s/".*: "//`
930 # The command to run lilypond
931 LILY_CMD = lilypond -ddelete-intermediate-files \
932                     -dno-point-and-click -djob-count=$(CPU_CORES)
933
934 # The suffixes used in this Makefile.
935 .SUFFIXES: .ly .ily .pdf .midi
936
937 # Input and output files are searched in the directories listed in
938 # the VPATH variable.  All of them are subdirectories of the current
939 # directory (given by the GNU make variable `CURDIR').
940 VPATH = \
941   $(CURDIR)/Scores \
942   $(CURDIR)/PDF \
943   $(CURDIR)/Parts \
944   $(CURDIR)/Notes
945
946 # The pattern rule to create PDF and MIDI files from a LY input file.
947 # The .pdf output files are put into the `PDF' subdirectory, and the
948 # .midi files go into the `MIDI' subdirectory.
949 %.pdf %.midi: %.ly
950         $(LILY_CMD) $<; \           # this line begins with a tab
951         if test -f "$*.pdf"; then \
952             mv "$*.pdf" PDF/; \
953         fi; \
954         if test -f "$*.midi"; then \
955             mv "$*.midi" MIDI/; \
956         fi
957
958 notes = \
959   cello.ily \
960   horn.ily \
961   oboe.ily \
962   viola.ily \
963   violinOne.ily \
964   violinTwo.ily
965
966 # The dependencies of the movements.
967 $(piece)I.pdf: $(piece)I.ly $(notes)
968 $(piece)II.pdf: $(piece)II.ly $(notes)
969 $(piece)III.pdf: $(piece)III.ly $(notes)
970 $(piece)IV.pdf: $(piece)IV.ly $(notes)
971
972 # The dependencies of the full score.
973 $(piece).pdf: $(piece).ly $(notes)
974
975 # The dependencies of the parts.
976 $(piece)-cello.pdf: $(piece)-cello.ly cello.ily
977 $(piece)-horn.pdf: $(piece)-horn.ly horn.ily
978 $(piece)-oboes.pdf: $(piece)-oboes.ly oboe.ily
979 $(piece)-viola.pdf: $(piece)-viola.ly viola.ily
980 $(piece)-violinOne.pdf: $(piece)-violinOne.ly violinOne.ily
981 $(piece)-violinTwo.pdf: $(piece)-violinTwo.ly violinTwo.ily
982
983 # Type `make score' to generate the full score of all four
984 # movements as one file.
985 .PHONY: score
986 score: $(piece).pdf
987
988 # Type `make parts' to generate all parts.
989 # Type `make foo.pdf' to generate the part for instrument `foo'.
990 # Example: `make symphony-cello.pdf'.
991 .PHONY: parts
992 parts: $(piece)-cello.pdf \
993        $(piece)-violinOne.pdf \
994        $(piece)-violinTwo.pdf \
995        $(piece)-viola.pdf \
996        $(piece)-oboes.pdf \
997        $(piece)-horn.pdf
998
999 # Type `make movements' to generate files for the
1000 # four movements separately.
1001 .PHONY: movements
1002 movements: $(piece)I.pdf \
1003            $(piece)II.pdf \
1004            $(piece)III.pdf \
1005            $(piece)IV.pdf
1006
1007 all: score parts movements
1008
1009 archive:
1010         tar -cvvf stamitz.tar \       # this line begins with a tab
1011         --exclude=*pdf --exclude=*~ \
1012         --exclude=*midi --exclude=*.tar \
1013         ../Stamitz/*
1014 @end example
1015
1016
1017 There are special complications on the Windows platform. After
1018 downloading and installing GNU Make for Windows, you must set the
1019 correct path in the system's environment variables so that the
1020 DOS shell can find the Make program. To do this, right-click on
1021 "My Computer," then choose @code{Properties} and
1022 @code{Advanced}. Click @code{Environment Variables}, and then
1023 in the @code{System Variables} pane, highlight @code{Path}, click
1024 @code{edit}, and add the path to the GNU Make executable file, which
1025  will look something like this:
1026
1027 @example
1028 C:\Program Files\GnuWin32\bin
1029 @end example
1030
1031 The makefile itself has to be altered to handle different shell
1032 commands and to deal with spaces that are present
1033 in some default system directories. The @code{archive} target
1034 is eliminated since Windows does not have the @code{tar} command,
1035 and Windows also has a different default extension for midi files.
1036
1037
1038 @example
1039 ## WINDOWS VERSION
1040 ##
1041 piece = symphony
1042 LILY_CMD = lilypond -ddelete-intermediate-files \
1043                     -dno-point-and-click \
1044                     -djob-count=$(NUMBER_OF_PROCESSORS)
1045
1046 #get the 8.3 name of CURDIR (workaround for spaces in PATH)
1047 workdir = $(shell for /f "tokens=*" %%b in ("$(CURDIR)") \
1048           do @@echo %%~sb)
1049
1050 .SUFFIXES: .ly .ily .pdf .mid
1051
1052 VPATH = \
1053   $(workdir)/Scores \
1054   $(workdir)/PDF \
1055   $(workdir)/Parts \
1056   $(workdir)/Notes
1057
1058 %.pdf %.mid: %.ly
1059         $(LILY_CMD) $<      # this line begins with a tab
1060         if exist "$*.pdf"  move /Y "$*.pdf"  PDF/ # begin with tab
1061         if exist "$*.mid" move /Y "$*.mid" MIDI/  # begin with tab
1062
1063 notes = \
1064   cello.ily \
1065   figures.ily \
1066   horn.ily \
1067   oboe.ily \
1068   trioString.ily \
1069   viola.ily \
1070   violinOne.ily \
1071   violinTwo.ily
1072
1073 $(piece)I.pdf: $(piece)I.ly $(notes)
1074 $(piece)II.pdf: $(piece)II.ly $(notes)
1075 $(piece)III.pdf: $(piece)III.ly $(notes)
1076 $(piece)IV.pdf: $(piece)IV.ly $(notes)
1077
1078 $(piece).pdf: $(piece).ly $(notes)
1079
1080 $(piece)-cello.pdf: $(piece)-cello.ly cello.ily
1081 $(piece)-horn.pdf: $(piece)-horn.ly horn.ily
1082 $(piece)-oboes.pdf: $(piece)-oboes.ly oboe.ily
1083 $(piece)-viola.pdf: $(piece)-viola.ly viola.ily
1084 $(piece)-violinOne.pdf: $(piece)-violinOne.ly violinOne.ily
1085 $(piece)-violinTwo.pdf: $(piece)-violinTwo.ly violinTwo.ily
1086
1087 .PHONY: score
1088 score: $(piece).pdf
1089
1090 .PHONY: parts
1091 parts: $(piece)-cello.pdf \
1092        $(piece)-violinOne.pdf \
1093        $(piece)-violinTwo.pdf \
1094        $(piece)-viola.pdf \
1095        $(piece)-oboes.pdf \
1096        $(piece)-horn.pdf
1097
1098 .PHONY: movements
1099 movements: $(piece)I.pdf \
1100            $(piece)II.pdf \
1101            $(piece)III.pdf \
1102            $(piece)IV.pdf
1103
1104 all: score parts movements
1105 @end example
1106
1107
1108 The next Makefile is for a @command{lilypond-book} document done in
1109 LaTeX. This project has an index, which requires that the
1110 @command{latex} command be run twice to update links. Output files are
1111 all stored in the @code{out} directory for .pdf output and in the
1112 @code{htmlout} directory for the html output.
1113
1114 @example
1115 SHELL=/bin/sh
1116 FILE=myproject
1117 OUTDIR=out
1118 WEBDIR=htmlout
1119 VIEWER=acroread
1120 BROWSER=firefox
1121 LILYBOOK_PDF=lilypond-book --output=$(OUTDIR) --pdf $(FILE).lytex
1122 LILYBOOK_HTML=lilypond-book --output=$(WEBDIR) $(FILE).lytex
1123 PDF=cd $(OUTDIR) && pdflatex $(FILE)
1124 HTML=cd $(WEBDIR) && latex2html $(FILE)
1125 INDEX=cd $(OUTDIR) && makeindex $(FILE)
1126 PREVIEW=$(VIEWER) $(OUTDIR)/$(FILE).pdf &
1127
1128 all: pdf web keep
1129
1130 pdf:
1131         $(LILYBOOK_PDF)  # begin with tab
1132         $(PDF)           # begin with tab
1133         $(INDEX)         # begin with tab
1134         $(PDF)           # begin with tab
1135         $(PREVIEW)       # begin with tab
1136
1137 web:
1138         $(LILYBOOK_HTML) # begin with tab
1139         $(HTML)          # begin with tab
1140         cp -R $(WEBDIR)/$(FILE)/ ./  # begin with tab
1141         $(BROWSER) $(FILE)/$(FILE).html &  # begin with tab
1142
1143 keep: pdf
1144         cp $(OUTDIR)/$(FILE).pdf $(FILE).pdf  # begin with tab
1145
1146 clean:
1147         rm -rf $(OUTDIR) # begin with tab
1148
1149 web-clean:
1150         rm -rf $(WEBDIR) # begin with tab
1151
1152 archive:
1153         tar -cvvf myproject.tar \ # begin this line with tab
1154         --exclude=out/* \
1155         --exclude=htmlout/* \
1156         --exclude=myproject/* \
1157         --exclude=*midi \
1158         --exclude=*pdf \
1159         --exclude=*~ \
1160         ../MyProject/*
1161 @end example
1162
1163 TODO: make this thing work on Windows
1164
1165 The previous makefile does not work on Windows. An alternative
1166 for Windows users would be to create a simple batch file
1167 containing the build commands. This will not
1168 keep track of dependencies the way a makefile does, but it at
1169 least reduces the build process to a single command. Save the
1170 following code as @command{build.bat} or @command{build.cmd}.
1171 The batch file can be run at the DOS prompt or by simply
1172 double-clicking its icon.
1173
1174 @example
1175 lilypond-book --output=out --pdf myproject.lytex
1176 cd out
1177 pdflatex myproject
1178 makeindex myproject
1179 pdflatex myproject
1180 cd ..
1181 copy out\myproject.pdf MyProject.pdf
1182 @end example
1183
1184
1185 @seealso
1186 Application Usage:
1187 @rprogram{Setup for MacOS X},
1188 @rprogram{Command-line usage},
1189 @rprogram{LilyPond-book}