]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/usage/lilypond-book.itely
Lilypond-book: Rewrite docs for MusicXML snippets
[lilypond.git] / Documentation / usage / lilypond-book.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2
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.  For details, see the Contributors'
8     Guide, node Updating translation committishes..
9 @end ignore
10
11 @c \version "2.14.0"
12
13 @c Note: keep this node named so that `info lilypond-book' brings you here.
14 @node lilypond-book
15 @chapter Running @command{lilypond-book}
16
17 If you want to add pictures of music to a document, you can simply do it
18 the way you would do with other types of pictures.  The pictures are
19 created separately, yielding PostScript output or PNG images, and those
20 are included into a @LaTeX{} or HTML document.
21
22 @command{lilypond-book} provides a way to automate this process: This
23 program extracts snippets of music from your document, runs
24 @command{lilypond} on them, and outputs the document with pictures
25 substituted for the music.  The line width and font size definitions for
26 the music are adjusted to match the layout of your document.
27
28 This is a separate program from @command{lilypond} itself, and is run
29 on the command line; for more information, see @ref{Command-line
30 usage}.  If you have MacOS 10.3 or 10.4 and you have trouble running
31 @code{lilypond-book}, see @rweb{MacOS X}.
32
33 This procedure may be applied to @LaTeX{}, HTML, Texinfo or DocBook
34 documents.
35
36 @cindex texinfo
37 @cindex latex
38 @cindex texinfo
39 @cindex texi
40 @cindex html
41 @cindex docbook
42 @cindex documents, adding music to
43 @cindex HTML, music in
44 @cindex Texinfo, music in
45 @cindex DocBook, music in
46 @cindex @LaTeX{}, music in
47
48 @menu
49 * An example of a musicological document::
50 * Integrating music and text::
51 * Music fragment options::
52 * Invoking lilypond-book::
53 * Filename extensions::
54 * lilypond-book templates::
55 * Sharing the table of contents::
56 * Alternate methods of mixing text and music::
57 @end menu
58
59
60 @node An example of a musicological document
61 @section An example of a musicological document
62
63 @cindex musicology
64 Some texts contain music examples.  These texts are musicological
65 treatises, songbooks, or manuals like this.  Such texts can be made by
66 hand, simply by importing a PostScript figure into the word processor.
67 However, there is an automated procedure to reduce the amount of work
68 involved in HTML, @LaTeX{}, Texinfo and DocBook documents.
69
70 A script called @code{lilypond-book} will extract the music fragments,
71 format them, and put back the resulting notation.  Here we show a small
72 example for use with @LaTeX{}.  The example also contains explanatory
73 text, so we will not comment on it further.
74
75 @subheading Input
76
77 @quotation
78 @verbatim
79 \documentclass[a4paper]{article}
80
81 \begin{document}
82
83 Documents for \verb+lilypond-book+ may freely mix music and text.
84 For example,
85
86 \begin{lilypond}
87 \relative c' {
88   c2 e2 \times 2/3 { f8 a b } a2 e4
89 }
90 \end{lilypond}
91
92 Options are put in brackets.
93
94 \begin{lilypond}[fragment,quote,staffsize=26,verbatim]
95   c'4 f16
96 \end{lilypond}
97
98 Larger examples can be put into a separate file, and introduced with
99 \verb+\lilypondfile+.
100
101 \lilypondfile[quote,noindent]{screech-boink.ly}
102
103 (If needed, replace @file{screech-boink.ly} by any @file{.ly} file
104 you put in the same directory as this file.)
105
106 \end{document}
107 @end verbatim
108 @end quotation
109
110 @subheading Processing
111
112 Save the code above to a file called @file{lilybook.lytex}, then in a
113 terminal run
114
115 @c keep space after @version{} so TeX doesn't choke
116 @example
117 lilypond-book --output=out --pdf lilybook.lytex
118 @emph{lilypond-book (GNU LilyPond) @version{} }
119 @emph{Reading lilybook.lytex...}
120 @emph{..lots of stuff deleted..}
121 @emph{Compiling lilybook.tex...}
122 cd out
123 pdflatex lilybook
124 @emph{..lots of stuff deleted..}
125 xpdf lilybook
126 @emph{(replace @command{xpdf} by your favorite PDF viewer)}
127 @end example
128
129 Running @command{lilypond-book} and @command{latex} creates a lot of
130 temporary files, which would clutter up the working directory.  To
131 remedy this, use the @option{--output=@var{dir}} option.  It will create
132 the files in a separate subdirectory @file{dir}.
133
134 Finally the result of the @LaTeX{} example shown above.@footnote{This
135 tutorial is processed with Texinfo, so the example gives slightly
136 different results in layout.}  This finishes the tutorial section.
137
138 @page
139
140 @subheading Output
141
142 Documents for @command{lilypond-book} may freely mix music and text.
143 For example,
144
145 @lilypond
146 \relative c' {
147   c2 e2 \times 2/3 { f8 a b } a2 e4
148 }
149 @end lilypond
150
151 Options are put in brackets.
152
153 @lilypond[fragment,quote,staffsize=26,verbatim]
154 c'4 f16
155 @end lilypond
156
157 Larger examples can be put into a separate file, and introduced with
158 @code{\lilypondfile}.
159
160 @lilypondfile[quote,noindent]{screech-boink.ly}
161
162 If a @code{tagline} is required, either default or custom, then the
163 entire snippet must be enclosed in a @code{\book @{ @}} construct.
164
165 @lilypond[papersize=a8,verbatim]
166 \book{
167   \header{
168     title = "A scale in LilyPond"
169   }
170
171   \relative c' {
172     c d e f g a b c
173   }
174 }
175 @end lilypond
176
177 @page
178
179 @node Integrating music and text
180 @section Integrating music and text
181
182 Here we explain how to integrate LilyPond with various output formats.
183
184 @menu
185 * LaTeX::
186 * Texinfo::
187 * HTML::
188 * DocBook::
189 @end menu
190
191 @node LaTeX
192 @subsection @LaTeX{}
193
194 @LaTeX{} is the de-facto standard for publishing layouts in the exact
195 sciences.  It is built on top of the @TeX{} typesetting engine,
196 providing the best typography available anywhere.
197
198 See
199 @uref{http://@/www@/.ctan@/.org/@/tex@/-archive/@/info/@/lshort/@/english/,
200 @emph{The Not So Short Introduction to @LaTeX{}}} for an overview on how
201 to use @LaTeX{}.
202
203 @code{lilypond-book} provides the following commands and environments to include
204 music in @LaTeX{} files:
205
206 @itemize
207
208 @item
209 the @code{\lilypond@{...@}} command, where you can directly enter short
210 lilypond code
211
212 @item
213 the @code{\begin@{lilypond@}...\end@{lilypond@}} environment, where you
214 can directly enter longer lilypond code
215
216 @item
217 the @code{\lilypondfile@{...@}} command to insert a lilypond file
218
219 @item
220 the @code{\musicxmlfile@{...@}} command to insert a MusicXML file, which
221 will be processed by @code{musicxml2ly} and @code{lilypond}.
222
223 @end itemize
224
225 In the input file, music is specified with any of the following commands:
226
227 @example
228 \begin@{lilypond@}[options,go,here]
229   YOUR LILYPOND CODE
230 \end@{lilypond@}
231
232 \lilypond[options,go,here]@{ YOUR LILYPOND CODE @}
233
234 \lilypondfile[options,go,here]@{@var{filename}@}
235
236 \musicxmlfile[options,go,here]@{@var{filename}@}
237 @end example
238
239
240 @noindent
241
242 Additionally, @code{\lilypondversion} displays the current version
243 of lilypond.
244 Running @command{lilypond-book} yields a file that can be further
245 processed with @LaTeX{}.
246
247 We show some examples here.  The @code{lilypond} environment
248
249 @example
250 \begin@{lilypond@}[quote,fragment,staffsize=26]
251   c' d' e' f' g'2 g'2
252 \end@{lilypond@}
253 @end example
254
255 @noindent
256 produces
257
258 @lilypond[quote,fragment,staffsize=26]
259 c' d' e' f' g'2 g'2
260 @end lilypond
261
262 The short version
263
264 @example
265 \lilypond[quote,fragment,staffsize=11]@{<c' e' g'>@}
266 @end example
267
268 @noindent
269 produces
270
271 @lilypond[quote,fragment,staffsize=11]{<c' e' g'>}
272
273 @noindent
274 Currently, you cannot include @code{@{} or @code{@}} within
275 @code{\lilypond@{@}}, so this command is only useful with the
276 @code{fragment} option.
277
278 The default line width of the music will be adjusted by examining the
279 commands in the document preamble, the part of the document before
280 @code{\begin@{document@}}.  The @command{lilypond-book} command sends
281 these to @LaTeX{} to find out how wide the text is.  The line width for
282 the music fragments is then adjusted to the text width.  Note that this
283 heuristic algorithm can fail easily; in such cases it is necessary to
284 use the @code{line-width} music fragment option.
285
286 @cindex titling and lilypond-book
287 @cindex \header in @LaTeX{} documents
288
289 Each snippet will call the following macros if they have been defined by
290 the user:
291
292 @itemize @bullet
293 @item @code{\preLilyPondExample} called before the music,
294
295 @item @code{\postLilyPondExample} called after the music,
296
297 @item @code{\betweenLilyPondSystem[1]} is called between systems if
298 @code{lilypond-book} has split the snippet into several PostScript
299 files.  It must be defined as taking one parameter and will be
300 passed the number of files already included in this snippet.
301 The default is to simply insert a @code{\linebreak}.
302 @end itemize
303
304 @ignore
305 Broken stuff.  :(
306
307 @cindex Latex, feta symbols
308 @cindex fetachar
309
310 To include feta symbols (such as flat, segno, etc) in a LaTeX
311 document, use @code{\input@{titledefs@}}
312
313 @example
314 \documentclass[a4paper]@{article@}
315
316 \input@{titledefs@}
317
318 \begin@{document@}
319
320 \fetachar\fetasharp
321
322 \end@{document@}
323 @end example
324
325 The font symbol names are defined in the file feta20.tex; to find
326 the location of this file, use the command
327
328 @example
329 kpsewhich feta20.tex
330 @end example
331
332 @end ignore
333
334 @snippets
335
336 Sometimes it is useful to display music elements (such as ties and slurs)
337 as if they continued after the end of the fragment.  This can be done by
338 breaking the staff and suppressing inclusion of the rest of the LilyPond
339 output.
340
341 In @LaTeX{}, define @code{\betweenLilyPondSystem} in such a way that
342 inclusion of other systems is terminated once the required number of
343 systems are included.  Since @code{\betweenLilyPondSystem} is first
344 called @emph{after} the first system, including only the first system
345 is trivial.
346
347 @example
348 \def\betweenLilyPondSystem#1@{\endinput@}
349
350 \begin@{lilypond@}[fragment]
351   c'1\( e'( c'~ \break c' d) e f\)
352 \end@{lilypond@}
353 @end example
354
355 If a greater number of systems is requested, a @TeX{} conditional must
356 be used before the @code{\endinput}.  In this example, replace @q{2} by
357 the number of systems you want in the output.
358
359 @example
360 \def\betweenLilyPondSystem#1@{
361     \ifnum#1<2\else\expandafter\endinput\fi
362 @}
363 @end example
364
365 @noindent
366 (Since @code{\endinput} immediately stops the processing of the current
367 input file we need @code{\expandafter} to delay the call of @code{\endinput}
368 after executing @code{\fi} so that the @code{\if}-@code{\fi} clause is
369 balanced.)
370
371 Remember that the definition of @code{\betweenLilyPondSystem} is
372 effective until @TeX{} quits the current group (such as the @LaTeX{}
373 environment) or is overridden by another definition (which is, in
374 most cases, for the rest of the document).  To reset your
375 definition, write
376
377 @example
378 \let\betweenLilyPondSystem\undefined
379 @end example
380
381 @noindent
382 in your @LaTeX{} source.
383
384 This may be simplified by defining a @TeX{} macro
385
386 @example
387 \def\onlyFirstNSystems#1@{
388     \def\betweenLilyPondSystem##1@{%
389       \ifnum##1<#1\else\expandafter\endinput\fi@}
390 @}
391 @end example
392
393 @noindent
394 and then saying only how many systems you want before each fragment,
395
396 @example
397 \onlyFirstNSystems@{3@}
398 \begin@{lilypond@}...\end@{lilypond@}
399 \onlyFirstNSystems@{1@}
400 \begin@{lilypond@}...\end@{lilypond@}
401 @end example
402
403
404 @seealso
405 There are specific @command{lilypond-book} command line options and
406 other details to know when processing @LaTeX{} documents, see
407 @ref{Invoking lilypond-book}.
408
409
410 @node Texinfo
411 @subsection Texinfo
412
413 Texinfo is the standard format for documentation of the GNU project.  An
414 example of a Texinfo document is this manual.  The HTML, PDF, and Info
415 versions of the manual are made from the Texinfo document.
416
417 @code{lilypond-book} provides the following commands and environments to include
418 music into Texinfo files:
419
420 @itemize
421
422 @item
423 the @code{@@lilypond@{...@}} command, where you can directly enter short
424 lilypond code
425
426 @item
427 the @code{@@lilypond...@@end lilypond} environment, where you can directly
428 enter longer lilypond code
429
430 @item
431 the @code{@@lilypondfile@{...@}} command to insert a lilypond file
432
433 @item
434 the @code{@@musicxmlfile@{...@}} command to insert a MusicXML file, which
435 will be processed by @code{musicxml2ly} and @code{lilypond}.
436
437 @end itemize
438
439 In the input file, music is specified with any of the following commands
440
441 @example
442 @@lilypond[options,go,here]
443   YOUR LILYPOND CODE
444 @@end lilypond
445
446 @@lilypond[options,go,here]@{ YOUR LILYPOND CODE @}
447
448 @@lilypondfile[options,go,here]@{@var{filename}@}
449
450 @@musicxmlfile[options,go,here]@{@var{filename}@}
451 @end example
452
453 Additionally, @code{@@lilypondversion} displays the current version
454 of lilypond.
455
456 When @command{lilypond-book} is run on it, this results in a Texinfo
457 file (with extension @file{.texi}) containing @code{@@image} tags for
458 HTML, Info and printed output.  @command{lilypond-book} generates images
459 of the music in EPS and PDF formats for use in the printed output, and
460 in PNG format for use in HTML and Info output.
461
462 We show two simple examples here.  A @code{lilypond} environment
463
464 @example
465 @@lilypond[fragment]
466 c' d' e' f' g'2 g'
467 @@end lilypond
468 @end example
469
470 @noindent
471 produces
472
473 @lilypond[fragment]
474 c' d' e' f' g'2 g'
475 @end lilypond
476
477 The short version
478
479 @example
480 @@lilypond[fragment,staffsize=11]@{<c' e' g'>@}
481 @end example
482
483 @noindent
484 produces
485
486 @lilypond[fragment,staffsize=11]{<c' e' g'>}
487
488 Contrary to @LaTeX{}, @code{@@lilypond@{...@}} does not generate an
489 in-line image.  It always gets a paragraph of its own.
490
491
492 @node HTML
493 @subsection HTML
494
495 @code{lilypond-book} provides the following commands and environments to include
496 music in HTML files:
497
498 @itemize
499
500 @item
501 the @code{<lilypond .... />} command, where you can directly enter short lilypond code
502
503 @item
504 the @code{<lilyond>...</lilypond>} environment, where you can directly enter longer
505 lilypond code
506
507 @item
508 the @code{<lilypondfile>...</lilypondfile>} command to insert a lilypond file
509
510 @item
511 the @code{<musicxmlfile>...</musicxmlfile>} command to insert a MusicXML file, which
512 will be processed by @code{musicxml2ly} and @code{lilypond}.
513
514 @end itemize
515
516 In the input file, music is specified with any of the following commands:
517
518 \begin@{lilypond@}[options,go,here]
519   YOUR LILYPOND CODE
520 \end@{lilypond@}
521
522 \lilypond[options,go,here]@{ YOUR LILYPOND CODE @}
523
524 \lilypondfile[options,go,here]@{@var{filename}@}
525
526 \musicxmlfile[options,go,here]@{@var{filename}@}
527 @example
528 <lilypond options go here>
529   YOUR LILYPOND CODE
530 </lilypond>
531
532 <lilypond options go here: YOUR LILYPOND CODE />
533
534 <lilypondfile options go here>@var{filename}</lilypondfile>
535
536 <musicxmlfile options go here>@var{filename}</musicxmlfile>
537 @end example
538
539 For example, you can write
540 @example
541 <lilypond fragment relative=2>
542 \key c \minor c4 es g2
543 </lilypond>
544 @end example
545
546 @noindent
547 @command{lilypond-book} then produces an HTML file with appropriate image
548 tags for the music fragments:
549
550 @lilypond[fragment,relative=2]
551 \key c \minor c4 es g2
552 @end lilypond
553
554 For inline pictures, use @code{<lilypond ... />}, where the options
555 are separated by a colon from the music, for example
556
557 @example
558 Some music in <lilypond relative=2: a b c/> a line of text.
559 @end example
560
561 To include separate files, say
562
563 @example
564 <lilypondfile @var{option1} @var{option2} ...>@var{filename}</lilypondfile>
565 @end example
566
567 @code{<musicxmlfile>} uses the same syntax as @code{<lilypondfile>}, but simply
568 references a MusicXML file rather than a LilyPond file.
569
570 For a list of options to use with the @code{lilypond} or
571 @code{lilypondfile} tags, see @ref{Music fragment options}.
572
573 Additionally, @code{<lilypondversion/>} displays the current version
574 of lilypond.
575
576
577 @cindex titling in HTML
578 @cindex preview image
579 @cindex thumbnail
580
581 @node DocBook
582 @subsection DocBook
583
584 For inserting LilyPond snippets it is good to keep the conformity of our
585 DocBook document, thus allowing us to use DocBook editors, validation
586 etc.  So we don't use custom tags, only specify a convention based on the
587 standard DocBook elements.
588
589 @subheading Common conventions
590
591 For inserting all type of snippets we use the @code{mediaobject} and
592 @code{inlinemediaobject} element, so our snippets can be formatted
593 inline or not inline.  The snippet formatting options are always
594 provided in the @code{role} property of the innermost element (see in
595 next sections).  Tags are chosen to allow DocBook editors format the
596 content gracefully.  The DocBook files to be processed with
597 @command{lilypond-book} should have the extension @file{.lyxml}.
598
599 @subheading Including a LilyPond file
600
601 This is the most simple case.  We must use the @file{.ly} extension for
602 the included file, and insert it as a standard @code{imageobject}, with
603 the following structure:
604
605 @example
606 <mediaobject>
607   <imageobject>
608     <imagedata fileref="music1.ly" role="printfilename" />
609   </imageobject>
610 </mediaobject>
611 @end example
612
613 Note that you can use @code{mediaobject} or @code{inlinemediaobject}
614 as the outermost element as you wish.
615
616 @subheading Including LilyPond code
617
618 Including LilyPond code is possible by using a @code{programlisting},
619 where the language is set to @code{lilypond} with the following
620 structure:
621
622 @example
623 <inlinemediaobject>
624   <textobject>
625     <programlisting language="lilypond" role="fragment verbatim staffsize=16 ragged-right relative=2">
626 \context Staff \with @{
627   \remove Time_signature_engraver
628   \remove Clef_engraver@}
629   @{ c4( fis) @}
630     </programlisting>
631   </textobject>
632 </inlinemediaobject>
633 @end example
634
635 As you can see, the outermost element is a @code{mediaobject} or
636 @code{inlinemediaobject}, and there is a @code{textobject} containing
637 the @code{programlisting} inside.
638
639 @subheading Processing the DocBook document
640
641 Running @command{lilypond-book} on our @file{.lyxml} file will create a
642 valid DocBook document to be further processed with @file{.xml}
643 extension.  If you use
644 @uref{http://@/dblatex@/.sourceforge@/.net@/,dblatex}, it will create a
645 PDF file from this document automatically.  For HTML (HTML Help,
646 JavaHelp etc.) generation you can use the official DocBook XSL
647 stylesheets, however, it is possible that you have to make some
648 customization for it.
649
650
651 @node Music fragment options
652 @section Music fragment options
653
654 In the following, a @q{LilyPond command} refers to any command described
655 in the previous sections which is handled by @command{lilypond-book} to
656 produce a music snippet.  For simplicity, LilyPond commands are only
657 shown in @LaTeX{} syntax.
658
659 Note that the option string is parsed from left to right; if an option
660 occurs multiple times, the last one is taken.
661
662 The following options are available for LilyPond commands:
663
664 @table @code
665 @item staffsize=@var{ht}
666 Set staff size to @var{ht}, which is measured in points.
667
668 @item ragged-right
669 Produce ragged-right lines with natural spacing, i.e.,
670 @code{ragged-right = ##t} is added to the LilyPond snippet.  This is the
671 default for the @code{\lilypond@{@}} command if no @code{line-width}
672 option is present.  It is also the default for the @code{lilypond}
673 environment if the @code{fragment} option is set, and no line width is
674 explicitly specified.
675
676 @item noragged-right
677 For single-line snippets, allow the staff length to be stretched to
678 equal that of the line width, i.e., @code{ragged-right = ##f} is
679 added to the LilyPond snippet.
680
681 @item line-width
682 @itemx line-width=@var{size}\@var{unit}
683 Set line width to @var{size}, using @var{unit} as units.  @var{unit} is
684 one of the following strings: @code{cm}, @code{mm}, @code{in}, or
685 @code{pt}.  This option affects LilyPond output (this is, the staff
686 length of the music snippet), not the text layout.
687
688 If used without an argument, set line width to a default value (as
689 computed with a heuristic algorithm).
690
691 If no @code{line-width} option is given, @command{lilypond-book} tries to
692 guess a default for @code{lilypond} environments which don't use the
693 @code{ragged-right} option.
694
695 @item papersize=@var{string}
696 Where @var{string} is a paper size defined in @file{scm/paper.scm} i.e.
697 @code{a5}, @code{quarto}, @code{11x17} etc.
698
699 Values not defined in @file{scm/paper.scm} will be ignored, a warning
700 will be posted and the snippet will be printed using the default
701 @code{a4} size.
702
703 @item notime
704 Do not print the time signature, and turns off the timing (time signature,
705 bar lines) in the score.
706
707 @item fragment
708 Make @command{lilypond-book} add some boilerplate code so that you can
709 simply enter, say,
710
711 @example
712 c'4
713 @end example
714
715 @noindent
716 without @code{\layout}, @code{\score}, etc.
717
718 @item nofragment
719 Do not add additional code to complete LilyPond code in music snippets.
720 Since this is the default, @code{nofragment} is redundant normally.
721
722 @item indent=@var{size}\@var{unit}
723 Set indentation of the first music system to @var{size}, using
724 @var{unit} as units.  @var{unit} is one of the following strings:
725 @code{cm}, @code{mm}, @code{in}, or @code{pt}.  This option affects
726 LilyPond, not the text layout.
727
728 @item noindent
729 Set indentation of the first music system to zero.  This option affects
730 LilyPond, not the text layout.  Since no indentation is the default,
731 @code{noindent} is redundant normally.
732
733 @item quote
734 Reduce line length of a music snippet by @math{2*0.4}@dmn{in} and put
735 the output into a quotation block.  The value @q{0.4@dmn{in}} can be
736 controlled with the @code{exampleindent} option.
737
738 @item exampleindent
739 Set the amount by which the @code{quote} option indents a music snippet.
740
741 @item relative
742 @itemx relative=@var{n}
743 Use relative octave mode.  By default, notes are specified relative to
744 middle@tie{}C.  The optional integer argument specifies the octave of
745 the starting note, where the default @code{1} is middle C.
746 @code{relative} option only works when @code{fragment} option is set,
747 so @code{fragment} is automatically implied by @code{relative},
748 regardless of the presence of any @code{(no)fragment} option in the
749 source.
750 @end table
751
752 LilyPond also uses @command{lilypond-book} to produce its own
753 documentation.  To do that, some more obscure music fragment options are
754 available.
755
756 @table @code
757 @item verbatim
758 The argument of a LilyPond command is copied to the output file and
759 enclosed in a verbatim block, followed by any text given with the
760 @code{intertext} option (not implemented yet); then the actual music is
761 displayed.  This option does not work well with @code{\lilypond@{@}} if
762 it is part of a paragraph.
763
764 If @code{verbatim} is used in a @code{lilypondfile} command, it is
765 possible to enclose verbatim only a part of the source file.  If the
766 source file contain a comment containing @samp{begin verbatim} (without
767 quotes), quoting the source in the verbatim block will start after the
768 last occurrence of such a comment; similarly, quoting the source verbatim
769 will stop just before the first occurrence of a comment containing
770 @samp{end verbatim}, if there is any.  In the following source file
771 example, the music will be interpreted in relative mode, but the
772 verbatim quote will not show the @code{relative} block, i.e.
773
774 @example
775 \relative c' @{ % begin verbatim
776   c4 e2 g4
777   f2 e % end verbatim
778 @}
779 @end example
780
781 @noindent
782 will be printed with a verbatim block like
783
784 @example
785   c4 e2 g4
786   f2 e
787 @end example
788
789 @noindent
790 If you would like to translate comments and variable names in verbatim
791 output but not in the sources, you may set the environment variable
792 @code{LYDOC_LOCALEDIR} to a directory path; the directory should
793 contain a tree of @file{.mo} message catalogs with @code{lilypond-doc}
794 as a domain.
795
796 @item addversion
797 (Only for Texinfo output.)  Prepend line @code{\version
798 @@w@{"@@version@{@}"@}} to @code{verbatim} output.
799
800 @item texidoc
801 (Only for Texinfo output.)  If @command{lilypond} is called with the
802 @option{--header=@/texidoc} option, and the file to be processed is
803 called @file{foo.ly}, it creates a file @file{foo.texidoc} if there
804 is a @code{texidoc} field in the @code{\header}.  The @code{texidoc}
805 option makes @command{lilypond-book} include such files, adding its
806 contents as a documentation block right before the music snippet.
807
808 Assuming the file @file{foo.ly} contains
809
810 @example
811 \header @{
812   texidoc = "This file demonstrates a single note."
813 @}
814 @{ c'4 @}
815 @end example
816
817 @noindent
818 and we have this in our Texinfo document @file{test.texinfo}
819
820 @example
821 @@lilypondfile[texidoc]@{foo.ly@}
822 @end example
823
824 @noindent
825 the following command line gives the expected result
826
827 @example
828 lilypond-book --pdf --process="lilypond \
829   -dbackend=eps --header=texidoc" test.texinfo
830 @end example
831
832 Most LilyPond test documents (in the @file{input} directory of the
833 distribution) are small @file{.ly} files which look exactly like this.
834
835 For localization purpose, if the Texinfo document contains
836 @code{@@documentlanguage @var{LANG}} and @file{foo.ly} header
837 contains a @code{texidoc@var{LANG}} field, and if @command{lilypond}
838 is called with @option{--header=@/texidoc@var{LANG}}, then
839 @file{foo.texidoc@var{LANG}} will be included instead of
840 @file{foo.texidoc}.
841
842 @item lilyquote
843 (Only for Texinfo output.)  This option is similar to quote, but only
844 the music snippet (and the optional verbatim block implied by
845 @code{verbatim} option) is put into a quotation block.  This option is
846 useful if you want to @code{quote} the music snippet but not the
847 @code{texidoc} documentation block.
848
849 @item doctitle
850 (Only for Texinfo output.) This option works similarly to
851 @code{texidoc} option: if @command{lilypond} is called with the
852 @option{--header=@/doctitle} option, and the file to be processed is
853 called @file{foo.ly} and contains a @code{doctitle} field in the
854 @code{\header}, it creates a file @file{foo.doctitle}.  When
855 @code{doctitle} option is used, the contents of @file{foo.doctitle},
856 which should be a single line of @var{text}, is inserted in the
857 Texinfo document as @code{@@lydoctitle @var{text}}.
858 @code{@@lydoctitle} should be a macro defined in the Texinfo document.
859 The same remark about @code{texidoc} processing with localized
860 languages also applies to @code{doctitle}.
861
862 @item nogettext
863 (Only for Texinfo output.) Do not translate comments and variable
864 names in the snippet quoted verbatim.
865
866 @item printfilename
867 If a LilyPond input file is included with @code{\lilypondfile}, print
868 the file name right before the music snippet.  For HTML output, this
869 is a link.  Only the base name of the file is printed, i.e. the
870 directory part of the file path is stripped.
871
872 @end table
873
874
875 @node Invoking lilypond-book
876 @section Invoking @command{lilypond-book}
877
878 @command{lilypond-book} produces a file with one of the following
879 extensions: @file{.tex}, @file{.texi}, @file{.html} or @file{.xml},
880 depending on the output format.  All of @file{.tex}, @file{.texi} and
881 @file{.xml} files need further processing.
882
883 @subheading Format-specific instructions
884
885 @subsubheading @LaTeX{}
886
887 There are two ways of processing your @LaTeX{} document for printing or
888 publishing: getting a PDF file directly with PDF@LaTeX{}, or getting a
889 PostScript file with @LaTeX{} via a DVI to PostScript translator like
890 @command{dvips}.  The first way is simpler and recommended@footnote{Note
891 that PDF@LaTeX{} and @LaTeX{} may not be both usable to compile any
892 @LaTeX{} document, that is why we explain the two ways.}, and whichever
893 way you use, you can easily convert between PostScript and PDF with
894 tools, like @command{ps2pdf} and @command{pdf2ps} included in
895 Ghostscript package.
896
897 To produce a PDF file through PDF@LaTeX{}, use
898
899 @example
900 lilypond-book --pdf yourfile.lytex
901 pdflatex yourfile.tex
902 @end example
903
904 @cindex outline fonts
905 @cindex type1 fonts
906 @cindex dvips
907 @cindex invoking dvips
908 To produce PDF output via @LaTeX{}/@command{dvips}/@command{ps2pdf}, you
909 should do
910
911 @example
912 lilypond-book yourfile.lytex
913 latex yourfile.tex
914 dvips -Ppdf yourfile.dvi
915 ps2pdf yourfile.ps
916 @end example
917
918 @noindent
919 The @file{.dvi} file created by this process will not contain
920  note heads.  This is normal; if you follow the instructions, they
921 will be included in the @file{.ps} and @file{.pdf} files.
922
923 Running @command{dvips} may produce some warnings about fonts; these
924 are harmless and may be ignored.  If you are running @command{latex} in
925 twocolumn mode, remember to add @option{-t landscape} to the
926 @command{dvips} options.
927
928 @subsubheading Texinfo
929
930 To produce a Texinfo document (in any output format), follow the normal
931 procedures for Texinfo; this is, either call @command{texi2pdf} or
932 @command{texi2dvi} or @command{makeinfo}, depending on the output format
933 you want to create.
934 @ifinfo
935 @xref{Format with texi2dvi, , , texinfo, GNU Texinfo}, and @ref{Creating
936 an Info File, , , texinfo, GNU Texinfo}.
937 @end ifinfo
938 @ifnotinfo
939 See the documentation of Texinfo for further details.
940 @end ifnotinfo
941
942
943 @subheading Command line options
944
945 @command{lilypond-book} accepts the following command line options:
946
947 @table @code
948 @item -f @var{format}
949 @itemx --format=@var{format}
950 Specify the document type to process: @code{html}, @code{latex},
951 @code{texi} (the default) or @code{docbook}.  If this option is missing,
952 @command{lilypond-book} tries to detect the format automatically, see
953 @ref{Filename extensions}.  Currently, @code{texi} is the same as
954 @code{texi-html}.
955
956 @c This complicated detail is not implemented, comment it out -jm
957 @ignore
958 The @code{texi} document type produces a Texinfo file with music
959 fragments in the printed output only.  For getting images in the HTML
960 version, the format @code{texi-html} must be used instead.
961 @end ignore
962
963 @item -F @var{filter}
964 @itemx --filter=@var{filter}
965 Pipe snippets through @var{filter}.  @code{lilypond-book} will
966 not --filter and --process at the same time.  For example,
967
968 @example
969 lilypond-book --filter='convert-ly --from=2.0.0 -' my-book.tely
970 @end example
971
972 @item -h
973 @itemx --help
974 Print a short help message.
975
976 @item -I @var{dir}
977 @itemx --include=@var{dir}
978 Add @var{dir} to the include path.  @command{lilypond-book} also looks
979 for already compiled snippets in the include path, and does not write
980 them back to the output directory, so in some cases it is necessary to
981 invoke further processing commands such as @command{makeinfo} or
982 @command{latex} with the same @option{-I @var{dir}} options.
983
984 @item -o @var{dir}
985 @itemx --output=@var{dir}
986 Place generated files in directory @var{dir}.  Running
987 @command{lilypond-book} generates lots of small files that LilyPond will
988 process.  To avoid all that garbage in the source directory, use the
989 @option{--output} command line option, and change to that directory
990 before running @command{latex} or @command{makeinfo}.
991
992 @example
993 lilypond-book --output=out yourfile.lytex
994 cd out
995 ...
996 @end example
997
998 @itemx --skip-lily-check
999 Do not fail if no lilypond output is found.  It is used for LilyPond
1000 Info documentation without images.
1001
1002 @itemx --skip-png-check
1003 Do not fail if no PNG images are found for EPS files.  It is used for
1004 LilyPond Info documentation without images.
1005
1006 @itemx --lily-output-dir=@var{dir}
1007 Write lily-XXX files to directory @var{dir}, link into @option{--output}
1008 directory.  Use this option to save building time for documents in
1009 different directories which share a lot of identical snippets.
1010
1011 @itemx --info-images-dir=@var{dir}
1012 Format Texinfo output so that Info will look for images of music in
1013 @var{dir}.
1014
1015 @itemx --latex-program=@var{prog}
1016 Run executable @command{prog} instead of @command{latex}.  This is
1017 useful if your document is processed with @command{xelatex}, for
1018 example.
1019
1020 @itemx --left-padding=@var{amount}
1021 Pad EPS boxes by this much.  @var{amount} is measured in millimeters,
1022 and is 3.0 by default.  This option should be used if the lines of
1023 music stick out of the right margin.
1024
1025 The width of a tightly clipped system can vary, due to notation
1026 elements that stick into the left margin, such as bar numbers and
1027 instrument names.  This option will shorten each line and move each
1028 line to the right by the same amount.
1029
1030 @item -P @var{command}
1031 @itemx --process=@var{command}
1032 Process LilyPond snippets using @var{command}.  The default command is
1033 @code{lilypond}.  @code{lilypond-book} will not @option{--filter} and
1034 @option{--process} at the same time.
1035
1036 @item --pdf
1037 Create PDF files for use with PDF@LaTeX{}.
1038
1039 @item --redirect-lilypond-output
1040 By default, output is displayed on the terminal.  This option redirects
1041 all output to log files in the same directory as the source files.
1042
1043 @itemx --use-source-file-names
1044 Write snippet output files with the same base name as their source file.
1045 This option works only for snippets included with @code{lilypondfile}
1046 and only if directories implied by @option{--output-dir} and
1047 @option{--lily-output-dir} options are different.
1048
1049 @item -V
1050 @itemx --verbose
1051 Be verbose.
1052
1053 @item -v
1054 @itemx --version
1055 Print version information.
1056 @end table
1057
1058 @knownissues
1059
1060 The Texinfo command @code{@@pagesizes} is not interpreted.  Similarly,
1061 @LaTeX{} commands that change margins and line widths after the preamble
1062 are ignored.
1063
1064 Only the first @code{\score} of a LilyPond block is processed.
1065
1066
1067 @node Filename extensions
1068 @section Filename extensions
1069
1070 You can use any filename extension for the input file, but if you do not
1071 use the recommended extension for a particular format you may need to
1072 manually specify the output format; for details, see @ref{Invoking
1073 lilypond-book}.  Otherwise, @command{lilypond-book} automatically
1074 selects the output format based on the input filename's extension.
1075
1076 @quotation
1077 @multitable @columnfractions .2 .5
1078 @item @strong{extension} @tab @strong{output format}
1079 @item
1080 @item @file{.html} @tab HTML
1081 @item @file{.htmly} @tab HTML
1082 @item @file{.itely} @tab Texinfo
1083 @item @file{.latex} @tab @LaTeX{}
1084 @item @file{.lytex} @tab @LaTeX{}
1085 @item @file{.lyxml} @tab DocBook
1086 @item @file{.tely} @tab Texinfo
1087 @item @file{.tex} @tab @LaTeX{}
1088 @item @file{.texi} @tab Texinfo
1089 @item @file{.texinfo} @tab Texinfo
1090 @item @file{.xml} @tab HTML
1091 @end multitable
1092 @end quotation
1093
1094 If you use the same filename extension for the input file than the
1095 extension @command{lilypond-book} uses for the output file, and if the
1096 input file is in the same directory as @command{lilypond-book} working
1097 directory, you must use @option{--output} option to make
1098 @command{lilypond-book} running, otherwise it will exit with an error
1099 message like @qq{Output would overwrite input file}.
1100
1101
1102 @node lilypond-book templates
1103 @section lilypond-book templates
1104
1105 These templates are for use with @code{lilypond-book}.  If you're not familiar
1106 with this program, please refer to
1107 @ref{lilypond-book}.
1108
1109 @subsection LaTeX
1110
1111 You can include LilyPond fragments in a LaTeX document.
1112
1113 @example
1114 \documentclass[]@{article@}
1115
1116 \begin@{document@}
1117
1118 Normal LaTeX text.
1119
1120 \begin@{lilypond@}
1121 \relative c'' @{
1122   a4 b c d
1123 @}
1124 \end@{lilypond@}
1125
1126 More LaTeX text, and options in square brackets.
1127
1128 \begin@{lilypond@}[fragment,relative=2,quote,staffsize=26,verbatim]
1129 d4 c b a
1130 \end@{lilypond@}
1131 \end@{document@}
1132 @end example
1133
1134 @subsection Texinfo
1135
1136 You can include LilyPond fragments in Texinfo; in fact, this entire manual
1137 is written in Texinfo.
1138
1139 @example
1140 \input texinfo @c -*-texinfo-*-
1141 @@node Top
1142 @@top
1143
1144 Texinfo text
1145
1146 @@lilypond
1147 \relative c' @{
1148   a4 b c d
1149 @}
1150 @@end lilypond
1151
1152 More Texinfo text, and options in brackets.
1153
1154 @@lilypond[verbatim,fragment,ragged-right]
1155 d4 c b a
1156 @@end lilypond
1157
1158 @@bye
1159 @end example
1160
1161
1162 @subsection html
1163
1164 @example
1165 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
1166 <!-- header_tag -->
1167 <HTML>
1168 <body>
1169
1170 <p>
1171 Documents for lilypond-book may freely mix music and text.  For
1172 example,
1173 <lilypond>
1174 \relative c'' @{
1175   a4 b c d
1176 @}
1177 </lilypond>
1178 </p>
1179
1180 <p>
1181 Another bit of lilypond, this time with options:
1182
1183 <lilypond fragment quote staffsize=26 verbatim>
1184 a4 b c d
1185 </lilypond>
1186 </p>
1187
1188 </body>
1189 </html>
1190
1191
1192 @end example
1193
1194 @subsection xelatex
1195
1196 @verbatim
1197 \documentclass{article}
1198 \usepackage{ifxetex}
1199 \ifxetex
1200 %xetex specific stuff
1201 \usepackage{xunicode,fontspec,xltxtra}
1202 \setmainfont[Numbers=OldStyle]{Times New Roman}
1203 \setsansfont{Arial}
1204 \else
1205 %This can be empty if you are not going to use pdftex
1206 \usepackage[T1]{fontenc}
1207 \usepackage[utf8]{inputenc}
1208 \usepackage{mathptmx}%Times
1209 \usepackage{helvet}%Helvetica
1210 \fi
1211 %Here you can insert all packages that pdftex also understands
1212 \usepackage[ngerman,finnish,english]{babel}
1213 \usepackage{graphicx}
1214
1215 \begin{document}
1216 \title{A short document with LilyPond and xelatex}
1217 \maketitle
1218
1219 Normal \textbf{font} commands inside the \emph{text} work,
1220 because they \textsf{are supported by \LaTeX{} and XeteX.}
1221 If you want to use specific commands like \verb+\XeTeX+, you
1222 should include them again in a \verb+\ifxetex+ environment.
1223 You can use this to print the \ifxetex \XeTeX{} command \else
1224 XeTeX command \fi which is not known to normal \LaTeX .
1225
1226 In normal text you can easily use LilyPond commands, like this:
1227
1228 \begin{lilypond}
1229 {a2 b c'8 c' c' c'}
1230 \end{lilypond}
1231
1232 \noindent
1233 and so on.
1234
1235 The fonts of snippets set with LilyPond will have to be set from
1236 inside
1237 of the snippet.  For this you should read the AU on how to use
1238 lilypond-book.
1239
1240 \selectlanguage{ngerman}
1241 Auch Umlaute funktionieren ohne die \LaTeX -Befehle, wie auch alle
1242 anderen
1243 seltsamen Zeichen: __ ______, wenn sie von der Schriftart
1244 unterst__tzt werden.
1245 \end{document}
1246 @end verbatim
1247
1248
1249 @node Sharing the table of contents
1250 @section Sharing the table of contents
1251
1252 These functions already exist in the OrchestralLily package:
1253
1254 @example
1255 @url{http://repo.or.cz/w/orchestrallily.git}
1256 @end example
1257
1258 For greater flexibility in text handling, some users prefer to
1259 export the table of contents from lilypond and read it into
1260 @LaTeX{}.
1261
1262 @subsubheading Exporting the ToC from LilyPond
1263
1264 This assumes that your score has multiple movements in the same lilypond
1265 output file.
1266
1267 @smallexample
1268 #(define (oly:create-toc-file layout pages)
1269   (let* ((label-table (ly:output-def-lookup layout 'label-page-table)))
1270     (if (not (null? label-table))
1271       (let* ((format-line (lambda (toc-item)
1272              (let* ((label (car toc-item))
1273                     (text  (caddr toc-item))
1274                     (label-page (and (list? label-table)
1275                                      (assoc label label-table)))
1276                     (page (and label-page (cdr label-page))))
1277                (format #f "~a, section, 1, @{~a@}, ~a" page text label))))
1278              (formatted-toc-items (map format-line (toc-items)))
1279              (whole-string (string-join formatted-toc-items ",\n"))
1280              (output-name (ly:parser-output-name parser))
1281              (outfilename (format "~a.toc" output-name))
1282              (outfile (open-output-file outfilename)))
1283         (if (output-port? outfile)
1284             (display whole-string outfile)
1285             (ly:warning (_ "Unable to open output file ~a for the TOC information") outfilename))
1286         (close-output-port outfile)))))
1287
1288 \paper @{
1289   #(define (page-post-process layout pages) (oly:create-toc-file layout pages))
1290 @}
1291 @end smallexample
1292
1293 @subsubheading Importing the ToC into LaTeX
1294
1295 In LaTeX, the header should include:
1296
1297 @c no, this doesn't require the smallexample, but since the other
1298 @c two blocks on this page use it, I figured I might as well
1299 @c user it here as well, for consistency. -gp
1300 @smallexample
1301 \usepackage@{pdfpages@}
1302 \includescore@{nameofthescore@}
1303 @end smallexample
1304
1305 @noindent
1306 where @code{\includescore} is defined as:
1307
1308 @smallexample
1309 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1310 % \includescore@{PossibleExtension@}
1311 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1312
1313 % Read in the TOC entries for a PDF file from the corresponding .toc file.
1314 % This requires some heave latex tweaking, since reading in things from a file
1315 % and inserting it into the arguments of a macro is not (easily) possible
1316
1317 % Solution by Patrick Fimml on #latex on April 18, 2009:
1318 % \readfile@{filename@}@{\variable@}
1319 % reads in the contents of the file into \variable (undefined if file
1320 % doesn't exist)
1321 \newread\readfile@@f
1322 \def\readfile@@line#1@{%
1323 @{\catcode`\^^M=10\global\read\readfile@@f to \readfile@@tmp@}%
1324 \edef\do@{\noexpand\g@@addto@@macro@{\noexpand#1@}@{\readfile@@tmp@}@}\do%
1325 \ifeof\readfile@@f\else%
1326 \readfile@@line@{#1@}%
1327 \fi%
1328 @}
1329 \def\readfile#1#2@{%
1330 \openin\readfile@@f=#1 %
1331 \ifeof\readfile@@f%
1332 \typeout@{No TOC file #1 available!@}%
1333 \else%
1334 \gdef#2@{@}%
1335 \readfile@@line@{#2@}%
1336 \fi
1337 \closein\readfile@@f%
1338 @}%
1339
1340
1341 \newcommand@{\includescore@}[1]@{
1342 \def\oly@@fname@{\oly@@basename\@@ifmtarg@{#1@}@{@}@{_#1@}@}
1343 \let\oly@@addtotoc\undefined
1344 \readfile@{\oly@@xxxxxxxxx@}@{\oly@@addtotoc@}
1345 \ifx\oly@@addtotoc\undefined
1346 \includepdf[pages=-]@{\oly@@fname@}
1347 \else
1348 \edef\includeit@{\noexpand\includepdf[pages=-,addtotoc=@{\oly@@addtotoc@}]
1349 @{\oly@@fname@}@}\includeit
1350 \fi
1351 @}
1352 @end smallexample
1353
1354
1355 @node Alternate methods of mixing text and music
1356 @section Alternative methods of mixing text and music
1357
1358 Other means of mixing text and music (without
1359 @command{lilypond-book}) are discussed in
1360 @ref{LilyPond output in other programs}.
1361
1362