]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/lilypond-book.itely
* Documentation/user/lilypond-book.itely (An example of a
[lilypond.git] / Documentation / user / lilypond-book.itely
1 @c -*- coding: latin-1; 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 \usepackage{graphics}
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 @cindex @code{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{}.  Since @command{lilypond-book} produces
195 lilypond snippets as @code{\includegraphics@{NAME.eps@}}, you must
196 add
197
198 @example
199 \usepackage@{graphics@}
200 @end example
201
202 @noindent
203 or
204
205 @example
206 \usepackage@{graphicx@}
207 @end example
208
209 @noindent
210 to the preamble of the LaTeX document.
211
212 We show some examples here.  The lilypond environment
213
214 @example
215 \begin[quote,fragment,staffsize=26]@{lilypond@}
216   c' d' e' f' g'2 g'2
217 \end@{lilypond@}
218 @end example
219
220 @noindent
221 produces
222
223 @lilypond[quote,fragment,staffsize=26]
224 c' d' e' f' g'2 g'2
225 @end lilypond
226
227 The short version
228
229 @example
230 \lilypond[quote,fragment,staffsize=11]@{<c' e' g'>@}
231 @end example
232
233 @noindent
234 produces
235
236 @lilypond[quote,fragment,staffsize=11]{<c' e' g'>}
237
238 @noindent
239 Currently, you cannot include @code{@{} or @code{@}} within
240 @code{\lilypond@{@}}, so this command is only useful with the
241 @code{fragment} option.
242
243 The default linewidth of the music will be adjusted by examining the
244 commands in the document preamble, the part of the document before
245 @code{\begin@{document@}}.  The @command{lilypond-book} command sends
246 these to La@TeX{} to find out how wide the text is.  The line width for
247 the music fragments is then adjusted to the text width.  Note that this
248 heuristic algorithm can fail easily; in such cases it is necessary to
249 use the @code{linewidth} music fragment option.
250
251 @cindex titling and lilypond-book
252 @cindex @code{\header} in La@TeX{} documents
253
254 Each snippet will call the following macros if they have been defined by
255 the user:
256
257 @code{\preLilyPondExample} called before the music
258
259 @code{\postLilyPondExample} called after the music
260
261 @code{\betweenLilyPondSystem[1]} is called between systems if
262 @code{lilypond-book} has split the snippet into several postscript
263 files.  It must be defined as taking one parameter and will be
264 passed the number of files already included in this snippet. 
265
266
267 @ignore
268 Broken stuff.  :(
269
270 @cindex Latex, feta symbols
271 @cindex fetachar
272
273 To include feta symbols (such as flat, segno, etc) in a LaTeX
274 document, use @code{\input@{titledefs@}}
275
276 @example
277 \documentclass[a4paper]@{article@}
278
279 \input@{titledefs@}
280
281 \begin@{document@}
282
283 \fetachar\fetasharp
284
285 \end@{document@}
286 @end example
287
288 The font symbol names are defined in the file feta20.tex; to find
289 the location of this file, use the command
290
291 @example
292 kpsewhich feta20.tex
293 @end example
294
295 @end ignore
296
297 @cindex outline fonts
298 @cindex type1 fonts
299 @cindex dvips
300 @cindex invoking dvips
301
302 For printing the La@TeX{} document you need a DVI to PostScript
303 translator like @command{dvips}.  To use @command{dvips} to produce
304 a PostScript file, add the following options to the @command{dvips}
305 command line:
306
307 @example
308 -o -Ppdf -h @var{file}.psfonts
309 @end example
310
311 @noindent
312 where the @var{file}@command{psfonts} file is obtained from
313 @command{lilypond-book}, @xref{Invoking lilypond-book} for details. PDF
314 can then be produced with a PostScript to PDF translator like
315 @code{ps2pdf} (which is part of GhostScript).  Running @command{dvips}
316 will produce some warnings about fonts; these are harmless and may
317 be ignored.
318
319 @cindex international characters
320 @cindex latin1
321
322
323 @node Integrating Texinfo and music
324 @section Integrating Texinfo and music
325
326 Texinfo is the standard format for documentation of the GNU project.  An
327 example of a Texinfo document is this manual.  The HTML, PDF, and Info
328 versions of the manual are made from the Texinfo document.
329
330 In the input file, music is specified with
331
332 @example
333 @@lilypond[options,go,here]
334   YOUR LILYPOND CODE
335 @@end lilypond
336 @end example
337
338 @noindent
339 or
340
341 @example
342 @@lilypond[options,go,here]@{ YOUR LILYPOND CODE @}
343 @end example
344
345 @noindent
346 or
347
348 @example
349 @@lilypondfile[options,go,here]@{@var{filename}@}
350 @end example
351
352 When @command{lilypond-book} is run on it, this results in a Texinfo
353 file (with extension @file{.texi}) containing @code{@@image} tags for
354 HTML and info output.  For the printed edition, the raw @TeX{} output of
355 LilyPond is included in the main document.
356
357 We show two simple examples here.  A @code{lilypond} environment
358
359 @example
360 @@lilypond[fragment]
361 c' d' e' f' g'2 g'
362 @@end lilypond
363 @end example
364
365 @noindent
366 produces
367
368 @lilypond[fragment]
369 c' d' e' f' g'2 g'
370 @end lilypond
371
372 The short version
373
374 @example
375 @@lilypond[fragment,staffsize=11]@{<c' e' g'>@}
376 @end example
377
378 @noindent
379 produces
380
381 @lilypond[fragment,staffsize=11]{<c' e' g'>}
382
383 Contrary to La@TeX{}, @code{@@lilypond@{...@}} does not generate an
384 in-line image.  It always gets a paragraph of its own.
385
386 When using the Texinfo output format, @command{lilypond-book} also
387 generates bitmaps of the music (in PNG format), so you can make an HTML
388 document with embedded music.
389
390
391 @node Integrating HTML and music
392 @section Integrating HTML and music
393
394 Music is entered using
395
396 @example
397 <lilypond fragment relative=2>
398 \key c \minor c4 es g2
399 </lilypond>
400 @end example
401
402 @noindent
403 @command{lilypond-book} then produces an HTML file with appropriate image
404 tags for the music fragments:
405
406 @lilypond[fragment,relative=2]
407 \key c \minor c4 es g2
408 @end lilypond
409
410 For inline pictures, use @code{<lilypond ... />}, where the options
411 are separated by a colon from the music, for example
412
413 @example
414 Some music in <lilypond relative=2: a b c/> a line of text.
415 @end example
416
417 To include separate files, say
418
419 @example
420 <lilypondfile @var{option1} @var{option2} ...>@var{filename}</lilypondfile>
421 @end example
422
423 @cindex titling in HTML
424 @cindex preview image
425 @cindex thumbnail
426
427
428 @node Music fragment options
429 @section Music fragment options
430
431 In the following, a ``LilyPond command'' refers to any command described
432 in the previous sections which is handled by @command{lilypond-book} to
433 produce a music snippet.  For simplicity, LilyPond commands are only
434 shown in La@TeX{} syntax.
435
436 Note that the option string is parsed from left to right; if an option
437 occurs multiple times, the last one is taken.
438
439 The following options are available for LilyPond commands:
440
441 @table @code
442 @item staffsize=@var{ht}
443 Set staff size to @var{ht}, which is measured in points.
444
445 @item raggedright
446 Produce ragged-right lines with natural spacing (i.e., @code{raggedright
447 = ##t} is added to the LilyPond snippet).  This is the default for the
448 @code{\lilypond@{@}} command if no @code{linewidth} option is present.
449 It is also the default for the @code{lilypond} environment if the
450 @code{fragment} option is set, and no line width is explicitly
451 specified.
452
453 @item packed
454 Produce lines with packed spacing (i.e., @code{packed = ##t} is added
455 to the LilyPond snippet).
456
457 @item linewidth
458 @itemx linewidth=@var{size}\@var{unit}
459 Set line width to @var{size}, using @var{unit} as units.  @var{unit} is
460 one of the following strings: @code{cm}, @code{mm}, @code{in}, or
461 @code{pt}.  This option affects LilyPond output (this is, the staff
462 length of the music snippet), not the text layout.
463
464 If used without an argument, set line width to a default value (as
465 computed with a heuristic algorithm).
466
467 If no @code{linewidth} option is given, @command{lilypond-book} tries to
468 guess a default for @code{lilypond} environments which don't use the
469 @code{raggedright} option.
470
471 @item notime
472 Do not print the time signature.
473
474 @item fragment
475 Make @command{lilypond-book} add some boilerplate code so that you can
476 simply enter, say,
477
478 @example
479 c'4
480 @end example
481
482 @noindent
483 without @code{\layout}, @code{\score}, etc.
484
485 @item nofragment
486 Don't add additional code to complete LilyPond code in music snippets.
487 Since this is the default, @code{nofragment} is redundant normally.
488
489 @item indent=@var{size}\@var{unit}
490 Set indentation of the first music system to @var{size}, using
491 @var{unit} as units. @var{unit} is one of the following strings:
492 @code{cm}, @code{mm}, @code{in}, or @code{pt}.  This option affects
493 LilyPond, not the text layout.
494
495 @item noindent
496 Set indentation of the first music system to zero.  This option affects
497 LilyPond, not the text layout.  Since no indentation is the default,
498 @code{noindent} is redundant normally.
499
500 @item quote
501 Reduce line length of a music snippet by @math{2*0.4}@dmn{in} and put
502 the output into a quotation block.  The value `0.4@dmn{in}' can be
503 controlled with the @code{exampleindent} option.
504
505 @item exampleindent
506 Set the amount by which the @code{quote} option indents a music snippet.
507
508 @item relative
509 @itemx relative=@var{n}
510 Use relative octave mode.  By default, notes are specified relative to
511 middle@tie{}C.  The optional integer argument specifies the octave of
512 the starting note, where the default @code{1} is middle C.
513 @end table
514
515 LilyPond also uses @command{lilypond-book} to produce its own
516 documentation.  To do that, some more obscure music fragment options are
517 available.
518
519 @table @code
520 @item verbatim
521 The argument of a LilyPond command is copied to the output file and
522 enclosed in a verbatim block, followed by any text given with the
523 @code{intertext} option (not implemented yet); then the actual music is
524 displayed.  This option does not work well with @code{\lilypond@{@}} if
525 it is part of a paragraph.
526
527 @item texidoc
528 (Only for Texinfo output.)  If @command{lilypond} is called with the
529 @option{--header=@/texidoc} option, and the file to be processed is
530 called @file{foo@/.ly}, it creates a file @file{foo@/.texidoc} if there
531 is a @code{texidoc} field in the @code{\header}.  The @code{texidoc}
532 option makes @command{lilypond-book} include such files, adding its
533 contents as a documentation block right before the music snippet.
534
535 Assuming the file @file{foo@/.ly} contains
536
537 @example
538 \header @{
539   texidoc = "This file demonstrates a single note."
540 @}
541 @{ c'4 @}
542 @end example
543
544 @noindent
545 and we have this in our Texinfo document @file{test.texinfo}
546
547 @example
548 @@lilypondfile[texidoc]@{foo.ly@}
549 @end example
550
551 @noindent
552 the following command line gives the expected result
553
554 @example
555 lilypond-book --process="lilypond --format=tex --tex \
556               --header=texidoc test.texinfo
557 @end example
558
559 Most LilyPond test documents (in the @file{input} directory of the
560 distribution) are small @file{.ly} files which look exactly like this.
561
562 @item printfilename
563 If a LilyPond input file is included with @code{\lilypondfile}, print
564 the file name right before the music snippet.  For HTML output, this is
565 a link.
566
567 @item fontload
568 This option includes fonts in all of the generated EPS-files for this
569 snippet. This should be used if the snippet uses any font that LaTeX
570 cannot find on its own.
571
572 @end table
573
574
575 @node Invoking lilypond-book
576 @section Invoking @command{lilypond-book}
577
578 @command{lilypond-book} produces a file with one of the following
579 extensions: @file{.tex}, @file{.texi}, or @file{.html}, depending on the
580 output format.  Both @file{.tex} and @file{.texi} files need further
581 processing.
582
583 @command{lilypond-book} can also create a PSFONTS file, which is required
584 by @command{dvips} to produce Postscript and PDF files.  You can call
585 this file whatever you want as long as you refer to the same file when
586 you call @command{dvips}.
587
588 To produce PDF output from the lilypond-book file (here called
589 @code{yourfile.lytex}), you should do
590
591 @example
592 lilypond-book --psfonts yourfile.lytex
593 latex yourfile.tex
594 dvips -o -h yourfile.psfonts -Ppdf yourfile.dvi
595 ps2pdf yourfile.ps
596 @end example
597
598 To produce a Texinfo document (in any output format), follow the normal
599 procedures for Texinfo (this is, either call @command{texi2dvi} or
600 @command{makeinfo}, depending on the output format you want to
601 create).
602 @ifinfo
603 @xref{Format with texi2dvi, , , texinfo, GNU Texinfo}, and @ref{Creating
604 an Info File, , , texinfo, GNU Texinfo}.
605 @end ifinfo
606 @ifnotinfo
607 See the documentation of Texinfo for further details.
608 @end ifnotinfo
609
610
611 @command{lilypond-book} accepts the following command line options:
612
613 @table @code
614 @item -f @var{format}
615 @itemx --format=@var{format}
616 Specify the document type to process: @code{html}, @code{latex}, or
617 @code{texi} (the default).  If this option is missing,
618 @command{lilypond-book} tries to detect the format automatically.
619
620 The @code{texi} document type produces a Texinfo file with music
621 fragments in the DVI output only.  For getting images in the HTML
622 version, the format @code{texi-html} must be used instead.
623
624 [Note: Currently, @code{texi} is the same as @code{texi-html}.]
625
626 @item -F @var{filter}
627 @itemx --filter=@var{filter}
628 Pipe snippets through @var{filter}.  @code{lilypond-book} will
629 not --filter and --process at the same time.
630
631 Example:
632 @example
633 lilypond-book --filter='convert-ly --from=2.0.0 -' my-book.tely
634 @end example
635
636 @item -h
637 @itemx --help
638 Print a short help message.
639
640 @item -I @var{dir}
641 @itemx --include=@var{dir}
642 Add @var{dir} to the include path.
643
644 @item -o @var{dir}
645 @itemx --output=@var{dir}
646 Place generated files in directory @var{dir}.  Running
647 @command{lilypond-book} generates lots of small files that LilyPond will
648 process.  To avoid all that garbage in the source directory use the
649 @option{--output} command line option, and change to that directory
650 before running @command{latex} or @command{makeinfo}:
651
652 @example
653 lilypond-book --output=out yourfile.lytex
654 cd out
655 ...
656 @end example
657
658 @item -P @var{process}
659 @itemx --process=@var{command}
660 Process LilyPond snippets using @var{command}.  The default command is
661 @code{lilypond}.  @code{lilypond-book} will not --filter and --process
662 at the same time.
663
664 @itemx --psfonts
665 extract all PostScript fonts into @file{@var{file}.psfonts} for dvips.
666 This is necessary for @command{dvips -h @var{file}.psfonts}.
667
668 @item -V
669 @itemx --verbose
670 Be verbose.
671
672 @item -v
673 @itemx --version
674 Print version information.
675 @end table
676
677 @refbugs
678
679 The Texinfo command @code{@@pagesizes} is not interpreted.  Similarly,
680 La@TeX{} commands that change margins and line widths after the preamble
681 are ignored.
682
683 Only the first @code{\score} of a LilyPond block is processed.
684
685
686 @node Filename extensions
687 @section Filename extensions
688
689 You can use any filename extension for the input file, but if you do not
690 use the recommended extension for a particular format you may need to
691 manually specify the output format.  @xref{Invoking lilypond-book}, for
692 details.  Otherwise, @command{lilypond-book} automatically selects the
693 output format based on the input filename's extension.
694
695 @quotation
696 @multitable @columnfractions .2 .5
697 @item @strong{extension} @tab @strong{output format}
698 @item
699 @item @file{.html} @tab HTML
700 @item @file{.itely} @tab Texinfo
701 @item @file{.latex} @tab La@TeX{}
702 @item @file{.lytex} @tab La@TeX{}
703 @item @file{.tely} @tab Texinfo
704 @item @file{.tex} @tab La@TeX{}
705 @item @file{.texi} @tab Texinfo
706 @item @file{.texinfo} @tab Texinfo
707 @item @file{.xml} @tab HTML
708 @end multitable
709 @end quotation