]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/lilypond-book.itely
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / Documentation / user / lilypond-book.itely
1 c -*- coding: utf-8; mode: texinfo; -*-
2
3
4 @ignore
5
6 TODO: cleanup
7
8 ** AARGH.  We also have tutorial.itely: Integrating text and music.
9
10    Could also do with a cleanup.  Lost inspiration to fix this manual
11    where to describe what?
12
13 @end ignore
14
15
16 @c Note: keep this node named so that `info lilypond-book' brings you here.
17 @node LilyPond-book
18 @chapter @command{lilypond-book}: Integrating text and music
19
20 If you want to add pictures of music to a document, you can simply do it
21 the way you would do with other types of pictures.  The pictures are
22 created separately, yielding PostScript output or PNG images, and those
23 are included into a La@TeX{} or HTML document.
24
25 @command{lilypond-book} provides a way to automate this process: This
26 program extracts snippets of music from your document, runs
27 @command{lilypond} on them, and outputs the document with pictures
28 substituted for the music.  The line width and font size definitions for
29 the music are adjusted to match the layout of your document.
30
31 This procedure may be applied to La@TeX{}, HTML or Texinfo documents.
32
33 @menu
34 * An example of a musicological document::  
35 * Integrating LaTeX and music::  
36 * Integrating Texinfo and music::  
37 * Integrating HTML and music::  
38 * Music fragment options::      
39 * Invoking lilypond-book::      
40 * Filename extensions::         
41 @end menu
42
43
44 @node An example of a musicological document
45 @section An example of a musicological document
46
47 @cindex musicology
48 @cindex La@TeX{}, music in
49 @cindex HTML, music in
50 @cindex Texinfo, music in
51 Some texts contain music examples.  These texts are musicological
52 treatises, songbooks, or manuals like this.  Such texts can be made by
53 hand, simply by importing a PostScript figure into the word processor.
54 However, there is an automated procedure to reduce the amount of work
55 involved in HTML, La@TeX{}, and Texinfo documents.
56
57 A script called @code{lilypond-book} will extract the music fragments,
58 format them, and put back the resulting notation.  Here we show a small
59 example for use with La@TeX{}.  The example also contains explanatory
60 text, so we will not comment on it further.
61
62 @quotation
63 @verbatim
64 \documentclass[a4paper]{article}
65
66 \begin{document}
67
68 Documents for @command{lilypond-book} may freely mix music and text.
69 For example,
70
71 \begin{lilypond}
72 \relative c' {
73   c2 g'2 \times 2/3 { f8 e d } c'2 g4
74 }
75 \end{lilypond}
76
77 Options are put in brackets.
78
79 \begin[fragment,quote,staffsize=26,verbatim]{lilypond}
80   c'4 f16
81 \end{lilypond}
82
83 Larger examples can be put into a separate file, and introduced with
84 \verb+\lilypondfile+.
85
86 \lilypondfile[quote,noindent]{screech-boink.ly}
87
88 \end{document}
89 @end verbatim
90 @end quotation
91
92 Under Unix, you can view the results as follows
93
94 @example
95 cd input/tutorial
96 mkdir -p out/
97 lilypond-book --output=out --psfonts lilybook.tex
98 @emph{lilypond-book (GNU LilyPond) 2.6.0}
99 @emph{Reading lilybook.tex...}
100 @emph{..lots of stuff deleted..}
101 @emph{Compiling out/lilybook.tex...}
102 cd out
103 latex lilybook
104 @emph{lots of stuff deleted}
105 xdvi lilybook
106 @end example
107
108 To convert the file into a PDF document, run the following commands
109
110 @example
111 dvips -o -Ppdf -h lilybook.psfonts lilybook
112 ps2pdf lilybook.ps
113 @end example
114
115 Running @command{lilypond-book} and @command{latex} creates a lot of
116 temporary files, which would clutter up the working directory.  To
117 remedy this, use the @code{--output=@var{dir}} option.  It will create
118 the files in a separate subdirectory @file{dir}.
119
120 Running dvips will produce many warnings about fonts.  They are not
121 harmful; please ignore them.
122
123 Finally the result of the La@TeX{} example shown above.@footnote{This
124 tutorial is processed with Texinfo, so the example gives slightly
125 different results in layout.}  This finishes the tutorial section.
126
127 @page
128
129 Documents for @command{lilypond-book} may freely mix music and text.
130 For example,
131
132 @lilypond
133 \relative c' {
134   c2 g'2 \times 2/3 { f8 e d } c'2 g4
135 }
136 @end lilypond
137
138 Options are put in brackets.
139
140 @lilypond[fragment,quote,staffsize=26,verbatim]
141 c'4 f16
142 @end lilypond
143
144 Larger examples can be put into a separate file, and introduced with
145 @code{\lilypondfile}.
146
147 @lilypondfile[quote,noindent]{screech-boink.ly}
148
149 @page
150
151 @cindex texinfo
152 @cindex latex
153 @cindex texinfo
154 @findex texi
155 @cindex html
156 @cindex documents, adding music to
157
158
159 @node Integrating LaTeX and music
160 @section Integrating La@TeX{} and music
161
162 La@TeX{} is the de-facto standard for publishing layouts in the exact
163 sciences.  It is built on top of the @TeX{} typesetting engine,
164 providing the best typography available anywhere.
165
166 See
167 @uref{http://@/www@/.ctan@/.org/@/tex@/-archive/@/info/@/lshort/@/english/,
168 @emph{The Not So Short Introduction to La@TeX{}}} for an overview on how
169 to use La@TeX{}.
170
171 Music is entered using
172
173 @example
174 \begin[options,go,here]@{lilypond@}
175   YOUR LILYPOND CODE
176 \end@{lilypond@}
177 @end example
178
179 @noindent
180 or
181
182 @example
183 \lilypondfile[options,go,here]@{@var{filename}@}
184 @end example
185
186 @noindent
187 or
188
189 @example
190 \lilypond@{ YOUR LILYPOND CODE @}
191 @end example
192
193 Running @command{lilypond-book} yields a file that can be further
194 processed with La@TeX{}.
195
196 We show some examples here.  The lilypond environment
197
198 @example
199 \begin[quote,fragment,staffsize=26]@{lilypond@}
200   c' d' e' f' g'2 g'2
201 \end@{lilypond@}
202 @end example
203
204 @noindent
205 produces
206
207 @lilypond[quote,fragment,staffsize=26]
208 c' d' e' f' g'2 g'2
209 @end lilypond
210
211 The short version
212
213 @example
214 \lilypond[quote,fragment,staffsize=11]@{<c' e' g'>@}
215 @end example
216
217 @noindent
218 produces
219
220 @lilypond[quote,fragment,staffsize=11]{<c' e' g'>}
221
222 @noindent
223 Currently, you cannot include @code{@{} or @code{@}} within
224 @code{\lilypond@{@}}, so this command is only useful with the
225 @code{fragment} option.
226
227 The default line width of the music will be adjusted by examining the
228 commands in the document preamble, the part of the document before
229 @code{\begin@{document@}}.  The @command{lilypond-book} command sends
230 these to La@TeX{} to find out how wide the text is.  The line width for
231 the music fragments is then adjusted to the text width.  Note that this
232 heuristic algorithm can fail easily; in such cases it is necessary to
233 use the @code{line-width} music fragment option.
234
235 @cindex titling and lilypond-book
236 @findex \header in La@TeX{} documents
237
238 Each snippet will call the following macros if they have been defined by
239 the user:
240
241 @code{\preLilyPondExample} called before the music
242
243 @code{\postLilyPondExample} called after the music
244
245 @code{\betweenLilyPondSystem[1]} is called between systems if
246 @code{lilypond-book} has split the snippet into several postscript
247 files.  It must be defined as taking one parameter and will be
248 passed the number of files already included in this snippet.
249 The default is to simply insert a @code{\linebreak}.
250
251 @ignore
252 Broken stuff.  :(
253
254 @cindex Latex, feta symbols
255 @cindex fetachar
256
257 To include feta symbols (such as flat, segno, etc) in a LaTeX
258 document, use @code{\input@{titledefs@}}
259
260 @example
261 \documentclass[a4paper]@{article@}
262
263 \input@{titledefs@}
264
265 \begin@{document@}
266
267 \fetachar\fetasharp
268
269 \end@{document@}
270 @end example
271
272 The font symbol names are defined in the file feta20.tex; to find
273 the location of this file, use the command
274
275 @example
276 kpsewhich feta20.tex
277 @end example
278
279 @end ignore
280
281 @cindex outline fonts
282 @cindex type1 fonts
283 @cindex dvips
284 @cindex invoking dvips
285
286 For printing the La@TeX{} document you need a DVI to PostScript
287 translator like @command{dvips}.  To use @command{dvips} to produce
288 a PostScript file, add the following options to the @command{dvips}
289 command line:
290
291 @example
292 -o -Ppdf -h @var{file}.psfonts
293 @end example
294
295 @noindent
296 where the @var{file}@command{psfonts} file is obtained from
297 @command{lilypond-book}, @xref{Invoking lilypond-book}, for details. PDF
298 can then be produced with a PostScript to PDF translator like
299 @code{ps2pdf} (which is part of GhostScript).  Running @command{dvips}
300 will produce some warnings about fonts; these are harmless and may
301 be ignored.
302
303 @cindex international characters
304 @cindex latin1
305
306
307 @node Integrating Texinfo and music
308 @section Integrating Texinfo and music
309
310 Texinfo is the standard format for documentation of the GNU project.  An
311 example of a Texinfo document is this manual.  The HTML, PDF, and Info
312 versions of the manual are made from the Texinfo document.
313
314 In the input file, music is specified with
315
316 @example
317 @@lilypond[options,go,here]
318   YOUR LILYPOND CODE
319 @@end lilypond
320 @end example
321
322 @noindent
323 or
324
325 @example
326 @@lilypond[options,go,here]@{ YOUR LILYPOND CODE @}
327 @end example
328
329 @noindent
330 or
331
332 @example
333 @@lilypondfile[options,go,here]@{@var{filename}@}
334 @end example
335
336 When @command{lilypond-book} is run on it, this results in a Texinfo
337 file (with extension @file{.texi}) containing @code{@@image} tags for
338 HTML and info output.  For the printed edition, the raw @TeX{} output of
339 LilyPond is included in the main document.
340
341 We show two simple examples here.  A @code{lilypond} environment
342
343 @example
344 @@lilypond[fragment]
345 c' d' e' f' g'2 g'
346 @@end lilypond
347 @end example
348
349 @noindent
350 produces
351
352 @lilypond[fragment]
353 c' d' e' f' g'2 g'
354 @end lilypond
355
356 The short version
357
358 @example
359 @@lilypond[fragment,staffsize=11]@{<c' e' g'>@}
360 @end example
361
362 @noindent
363 produces
364
365 @lilypond[fragment,staffsize=11]{<c' e' g'>}
366
367 Contrary to La@TeX{}, @code{@@lilypond@{...@}} does not generate an
368 in-line image.  It always gets a paragraph of its own.
369
370 When using the Texinfo output format, @command{lilypond-book} also
371 generates bitmaps of the music (in PNG format), so you can make an HTML
372 document with embedded music.
373
374
375 @node Integrating HTML and music
376 @section Integrating HTML and music
377
378 Music is entered using
379
380 @example
381 <lilypond fragment relative=2>
382 \key c \minor c4 es g2
383 </lilypond>
384 @end example
385
386 @noindent
387 @command{lilypond-book} then produces an HTML file with appropriate image
388 tags for the music fragments:
389
390 @lilypond[fragment,relative=2]
391 \key c \minor c4 es g2
392 @end lilypond
393
394 For inline pictures, use @code{<lilypond ... />}, where the options
395 are separated by a colon from the music, for example
396
397 @example
398 Some music in <lilypond relative=2: a b c/> a line of text.
399 @end example
400
401 To include separate files, say
402
403 @example
404 <lilypondfile @var{option1} @var{option2} ...>@var{filename}</lilypondfile>
405 @end example
406
407 @cindex titling in HTML
408 @cindex preview image
409 @cindex thumbnail
410
411
412 @node Music fragment options
413 @section Music fragment options
414
415 In the following, a ``LilyPond command'' refers to any command described
416 in the previous sections which is handled by @command{lilypond-book} to
417 produce a music snippet.  For simplicity, LilyPond commands are only
418 shown in La@TeX{} syntax.
419
420 Note that the option string is parsed from left to right; if an option
421 occurs multiple times, the last one is taken.
422
423 The following options are available for LilyPond commands:
424
425 @table @code
426 @item staffsize=@var{ht}
427 Set staff size to @var{ht}, which is measured in points.
428
429 @item ragged-right
430 Produce ragged-right lines with natural spacing (i.e., @code{ragged-right
431 = ##t} is added to the LilyPond snippet).  This is the default for the
432 @code{\lilypond@{@}} command if no @code{line-width} option is present.
433 It is also the default for the @code{lilypond} environment if the
434 @code{fragment} option is set, and no line width is explicitly
435 specified.
436
437 @item packed
438 Produce lines with packed spacing (i.e., @code{packed = ##t} is added
439 to the LilyPond snippet).
440
441 @item line-width
442 @itemx line-width=@var{size}\@var{unit}
443 Set line width to @var{size}, using @var{unit} as units.  @var{unit} is
444 one of the following strings: @code{cm}, @code{mm}, @code{in}, or
445 @code{pt}.  This option affects LilyPond output (this is, the staff
446 length of the music snippet), not the text layout.
447
448 If used without an argument, set line width to a default value (as
449 computed with a heuristic algorithm).
450
451 If no @code{line-width} option is given, @command{lilypond-book} tries to
452 guess a default for @code{lilypond} environments which don't use the
453 @code{ragged-right} option.
454
455 @item notime
456 Do not print the time signature, and turns off the timing (key signature,
457 bar lines) in the score.
458
459 @item fragment
460 Make @command{lilypond-book} add some boilerplate code so that you can
461 simply enter, say,
462
463 @example
464 c'4
465 @end example
466
467 @noindent
468 without @code{\layout}, @code{\score}, etc.
469
470 @item nofragment
471 Don't add additional code to complete LilyPond code in music snippets.
472 Since this is the default, @code{nofragment} is redundant normally.
473
474 @item indent=@var{size}\@var{unit}
475 Set indentation of the first music system to @var{size}, using
476 @var{unit} as units. @var{unit} is one of the following strings:
477 @code{cm}, @code{mm}, @code{in}, or @code{pt}.  This option affects
478 LilyPond, not the text layout.
479
480 @item noindent
481 Set indentation of the first music system to zero.  This option affects
482 LilyPond, not the text layout.  Since no indentation is the default,
483 @code{noindent} is redundant normally.
484
485 @item quote
486 Reduce line length of a music snippet by @math{2*0.4}@dmn{in} and put
487 the output into a quotation block.  The value `0.4@dmn{in}' can be
488 controlled with the @code{exampleindent} option.
489
490 @item exampleindent
491 Set the amount by which the @code{quote} option indents a music snippet.
492
493 @item relative
494 @itemx relative=@var{n}
495 Use relative octave mode.  By default, notes are specified relative to
496 middle@tie{}C.  The optional integer argument specifies the octave of
497 the starting note, where the default @code{1} is middle C.
498 @end table
499
500 LilyPond also uses @command{lilypond-book} to produce its own
501 documentation.  To do that, some more obscure music fragment options are
502 available.
503
504 @table @code
505 @item verbatim
506 The argument of a LilyPond command is copied to the output file and
507 enclosed in a verbatim block, followed by any text given with the
508 @code{intertext} option (not implemented yet); then the actual music is
509 displayed.  This option does not work well with @code{\lilypond@{@}} if
510 it is part of a paragraph.
511
512 @item texidoc
513 (Only for Texinfo output.)  If @command{lilypond} is called with the
514 @option{--header=@/texidoc} option, and the file to be processed is
515 called @file{foo@/.ly}, it creates a file @file{foo@/.texidoc} if there
516 is a @code{texidoc} field in the @code{\header}.  The @code{texidoc}
517 option makes @command{lilypond-book} include such files, adding its
518 contents as a documentation block right before the music snippet.
519
520 Assuming the file @file{foo@/.ly} contains
521
522 @example
523 \header @{
524   texidoc = "This file demonstrates a single note."
525 @}
526 @{ c'4 @}
527 @end example
528
529 @noindent
530 and we have this in our Texinfo document @file{test.texinfo}
531
532 @example
533 @@lilypondfile[texidoc]@{foo.ly@}
534 @end example
535
536 @noindent
537 the following command line gives the expected result
538
539 @example
540 lilypond-book --process="lilypond --format=tex --tex \
541               --header=texidoc test.texinfo
542 @end example
543
544 Most LilyPond test documents (in the @file{input} directory of the
545 distribution) are small @file{.ly} files which look exactly like this.
546
547 @item printfilename
548 If a LilyPond input file is included with @code{\lilypondfile}, print
549 the file name right before the music snippet.  For HTML output, this is
550 a link.
551
552 @item fontload
553 This option includes fonts in all of the generated EPS-files for this
554 snippet. This should be used if the snippet uses any font that LaTeX
555 cannot find on its own.
556
557 @end table
558
559
560 @node Invoking lilypond-book
561 @section Invoking @command{lilypond-book}
562
563 @command{lilypond-book} produces a file with one of the following
564 extensions: @file{.tex}, @file{.texi}, or @file{.html}, depending on the
565 output format.  Both @file{.tex} and @file{.texi} files need further
566 processing.
567
568 @command{lilypond-book} can also create a PSFONTS file, which is required
569 by @command{dvips} to produce Postscript and PDF files.  You can call
570 this file whatever you want as long as you refer to the same file when
571 you call @command{dvips}.
572
573 To produce PDF output from the lilypond-book file (here called
574 @code{yourfile.lytex}), you should do
575
576 @example
577 lilypond-book --psfonts yourfile.lytex
578 latex yourfile.tex
579 dvips -o -h yourfile.psfonts -Ppdf yourfile.dvi
580 ps2pdf yourfile.ps
581 @end example
582
583 The @file{.dvi} file created by this process will not contain
584 noteheads.  This is normal; if you follow the instructions, they
585 will be included in the @file{.ps} and @file{.pdf} files.
586
587 To produce a Texinfo document (in any output format), follow the normal
588 procedures for Texinfo (this is, either call @command{texi2dvi} or
589 @command{makeinfo}, depending on the output format you want to
590 create).
591 @ifinfo
592 @xref{Format with texi2dvi, , , texinfo, GNU Texinfo}, and @ref{Creating
593 an Info File, , , texinfo, GNU Texinfo}.
594 @end ifinfo
595 @ifnotinfo
596 See the documentation of Texinfo for further details.
597 @end ifnotinfo
598
599
600 @command{lilypond-book} accepts the following command line options:
601
602 @table @code
603 @item -f @var{format}
604 @itemx --format=@var{format}
605 Specify the document type to process: @code{html}, @code{latex}, or
606 @code{texi} (the default).  If this option is missing,
607 @command{lilypond-book} tries to detect the format automatically.
608
609 The @code{texi} document type produces a Texinfo file with music
610 fragments in the DVI output only.  For getting images in the HTML
611 version, the format @code{texi-html} must be used instead.
612
613 [Note: Currently, @code{texi} is the same as @code{texi-html}.]
614
615 @item -F @var{filter}
616 @itemx --filter=@var{filter}
617 Pipe snippets through @var{filter}.  @code{lilypond-book} will
618 not --filter and --process at the same time.
619
620 Example:
621 @example
622 lilypond-book --filter='convert-ly --from=2.0.0 -' my-book.tely
623 @end example
624
625 @item -h
626 @itemx --help
627 Print a short help message.
628
629 @item -I @var{dir}
630 @itemx --include=@var{dir}
631 Add @var{dir} to the include path.
632
633 @item -o @var{dir}
634 @itemx --output=@var{dir}
635 Place generated files in directory @var{dir}.  Running
636 @command{lilypond-book} generates lots of small files that LilyPond will
637 process.  To avoid all that garbage in the source directory use the
638 @option{--output} command line option, and change to that directory
639 before running @command{latex} or @command{makeinfo}:
640
641 @example
642 lilypond-book --output=out yourfile.lytex
643 cd out
644 ...
645 @end example
646
647 @item -P @var{process}
648 @itemx --process=@var{command}
649 Process LilyPond snippets using @var{command}.  The default command is
650 @code{lilypond}.  @code{lilypond-book} will not --filter and --process
651 at the same time.
652
653 @itemx --psfonts
654 extract all PostScript fonts into @file{@var{file}.psfonts} for dvips.
655 This is necessary for @command{dvips -h @var{file}.psfonts}.
656
657 @item -V
658 @itemx --verbose
659 Be verbose.
660
661 @item -v
662 @itemx --version
663 Print version information.
664 @end table
665
666 @refbugs
667
668 The Texinfo command @code{@@pagesizes} is not interpreted.  Similarly,
669 La@TeX{} commands that change margins and line widths after the preamble
670 are ignored.
671
672 Only the first @code{\score} of a LilyPond block is processed.
673
674
675 @node Filename extensions
676 @section Filename extensions
677
678 You can use any filename extension for the input file, but if you do not
679 use the recommended extension for a particular format you may need to
680 manually specify the output format.  @xref{Invoking lilypond-book}, for
681 details.  Otherwise, @command{lilypond-book} automatically selects the
682 output format based on the input filename's extension.
683
684 @quotation
685 @multitable @columnfractions .2 .5
686 @item @strong{extension} @tab @strong{output format}
687 @item
688 @item @file{.html} @tab HTML
689 @item @file{.itely} @tab Texinfo
690 @item @file{.latex} @tab La@TeX{}
691 @item @file{.lytex} @tab La@TeX{}
692 @item @file{.tely} @tab Texinfo
693 @item @file{.tex} @tab La@TeX{}
694 @item @file{.texi} @tab Texinfo
695 @item @file{.texinfo} @tab Texinfo
696 @item @file{.xml} @tab HTML
697 @end multitable
698 @end quotation