]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/usage/lilypond-book.itely
2e6dfd113e5d67cf86c683f48996d426984eab8e
[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.  Single-line
671 snippets will always be typeset by default as ragged-right, unless
672 @code{noragged-right} is explicitly given.
673
674 @item noragged-right
675 For single-line snippets, allow the staff length to be stretched to
676 equal that of the line width, i.e., @code{ragged-right = ##f} is
677 added to the LilyPond snippet.
678
679 @item line-width
680 @itemx line-width=@var{size}\@var{unit}
681 Set line width to @var{size}, using @var{unit} as units.  @var{unit} is
682 one of the following strings: @code{cm}, @code{mm}, @code{in}, or
683 @code{pt}.  This option affects LilyPond output (this is, the staff
684 length of the music snippet), not the text layout.
685
686 If used without an argument, set line width to a default value (as
687 computed with a heuristic algorithm).
688
689 If no @code{line-width} option is given, @command{lilypond-book} tries to
690 guess a default for @code{lilypond} environments which don't use the
691 @code{ragged-right} option.
692
693 @item papersize=@var{string}
694 Where @var{string} is a paper size defined in @file{scm/paper.scm} i.e.
695 @code{a5}, @code{quarto}, @code{11x17} etc.
696
697 Values not defined in @file{scm/paper.scm} will be ignored, a warning
698 will be posted and the snippet will be printed using the default
699 @code{a4} size.
700
701 @item notime
702 Do not print the time signature, and turns off the timing (time signature,
703 bar lines) in the score.
704
705 @item fragment
706 Make @command{lilypond-book} add some boilerplate code so that you can
707 simply enter, say,
708
709 @example
710 c'4
711 @end example
712
713 @noindent
714 without @code{\layout}, @code{\score}, etc.
715
716 @item nofragment
717 Do not add additional code to complete LilyPond code in music snippets.
718 Since this is the default, @code{nofragment} is redundant normally.
719
720 @item indent=@var{size}\@var{unit}
721 Set indentation of the first music system to @var{size}, using
722 @var{unit} as units.  @var{unit} is one of the following strings:
723 @code{cm}, @code{mm}, @code{in}, or @code{pt}.  This option affects
724 LilyPond, not the text layout.
725
726 @item noindent
727 Set indentation of the first music system to zero.  This option affects
728 LilyPond, not the text layout.  Since no indentation is the default,
729 @code{noindent} is redundant normally.
730
731 @item quote
732 Reduce line length of a music snippet by @math{2*0.4}@dmn{in} and put
733 the output into a quotation block.  The value @q{0.4@dmn{in}} can be
734 controlled with the @code{exampleindent} option.
735
736 @item exampleindent
737 Set the amount by which the @code{quote} option indents a music snippet.
738
739 @item relative
740 @itemx relative=@var{n}
741 Use relative octave mode.  By default, notes are specified relative to
742 middle@tie{}C.  The optional integer argument specifies the octave of
743 the starting note, where the default @code{1} is middle C.
744 @code{relative} option only works when @code{fragment} option is set,
745 so @code{fragment} is automatically implied by @code{relative},
746 regardless of the presence of any @code{(no)fragment} option in the
747 source.
748 @end table
749
750 LilyPond also uses @command{lilypond-book} to produce its own
751 documentation.  To do that, some more obscure music fragment options are
752 available.
753
754 @table @code
755 @item verbatim
756 The argument of a LilyPond command is copied to the output file and
757 enclosed in a verbatim block, followed by any text given with the
758 @code{intertext} option (not implemented yet); then the actual music is
759 displayed.  This option does not work well with @code{\lilypond@{@}} if
760 it is part of a paragraph.
761
762 If @code{verbatim} is used in a @code{lilypondfile} command, it is
763 possible to enclose verbatim only a part of the source file.  If the
764 source file contain a comment containing @samp{begin verbatim} (without
765 quotes), quoting the source in the verbatim block will start after the
766 last occurrence of such a comment; similarly, quoting the source verbatim
767 will stop just before the first occurrence of a comment containing
768 @samp{end verbatim}, if there is any.  In the following source file
769 example, the music will be interpreted in relative mode, but the
770 verbatim quote will not show the @code{relative} block, i.e.
771
772 @example
773 \relative c' @{ % begin verbatim
774   c4 e2 g4
775   f2 e % end verbatim
776 @}
777 @end example
778
779 @noindent
780 will be printed with a verbatim block like
781
782 @example
783   c4 e2 g4
784   f2 e
785 @end example
786
787 @noindent
788 If you would like to translate comments and variable names in verbatim
789 output but not in the sources, you may set the environment variable
790 @code{LYDOC_LOCALEDIR} to a directory path; the directory should
791 contain a tree of @file{.mo} message catalogs with @code{lilypond-doc}
792 as a domain.
793
794 @item addversion
795 (Only for Texinfo output.)  Prepend line @code{\version
796 @@w@{"@@version@{@}"@}} to @code{verbatim} output.
797
798 @item texidoc
799 (Only for Texinfo output.)  If @command{lilypond} is called with the
800 @option{--header=@/texidoc} option, and the file to be processed is
801 called @file{foo.ly}, it creates a file @file{foo.texidoc} if there
802 is a @code{texidoc} field in the @code{\header}.  The @code{texidoc}
803 option makes @command{lilypond-book} include such files, adding its
804 contents as a documentation block right before the music snippet.
805
806 Assuming the file @file{foo.ly} contains
807
808 @example
809 \header @{
810   texidoc = "This file demonstrates a single note."
811 @}
812 @{ c'4 @}
813 @end example
814
815 @noindent
816 and we have this in our Texinfo document @file{test.texinfo}
817
818 @example
819 @@lilypondfile[texidoc]@{foo.ly@}
820 @end example
821
822 @noindent
823 the following command line gives the expected result
824
825 @example
826 lilypond-book --pdf --process="lilypond \
827   -dbackend=eps --header=texidoc" test.texinfo
828 @end example
829
830 Most LilyPond test documents (in the @file{input} directory of the
831 distribution) are small @file{.ly} files which look exactly like this.
832
833 For localization purpose, if the Texinfo document contains
834 @code{@@documentlanguage @var{LANG}} and @file{foo.ly} header
835 contains a @code{texidoc@var{LANG}} field, and if @command{lilypond}
836 is called with @option{--header=@/texidoc@var{LANG}}, then
837 @file{foo.texidoc@var{LANG}} will be included instead of
838 @file{foo.texidoc}.
839
840 @item lilyquote
841 (Only for Texinfo output.)  This option is similar to quote, but only
842 the music snippet (and the optional verbatim block implied by
843 @code{verbatim} option) is put into a quotation block.  This option is
844 useful if you want to @code{quote} the music snippet but not the
845 @code{texidoc} documentation block.
846
847 @item doctitle
848 (Only for Texinfo output.) This option works similarly to
849 @code{texidoc} option: if @command{lilypond} is called with the
850 @option{--header=@/doctitle} option, and the file to be processed is
851 called @file{foo.ly} and contains a @code{doctitle} field in the
852 @code{\header}, it creates a file @file{foo.doctitle}.  When
853 @code{doctitle} option is used, the contents of @file{foo.doctitle},
854 which should be a single line of @var{text}, is inserted in the
855 Texinfo document as @code{@@lydoctitle @var{text}}.
856 @code{@@lydoctitle} should be a macro defined in the Texinfo document.
857 The same remark about @code{texidoc} processing with localized
858 languages also applies to @code{doctitle}.
859
860 @item nogettext
861 (Only for Texinfo output.) Do not translate comments and variable
862 names in the snippet quoted verbatim.
863
864 @item printfilename
865 If a LilyPond input file is included with @code{\lilypondfile}, print
866 the file name right before the music snippet.  For HTML output, this
867 is a link.  Only the base name of the file is printed, i.e. the
868 directory part of the file path is stripped.
869
870 @end table
871
872
873 @node Invoking lilypond-book
874 @section Invoking @command{lilypond-book}
875
876 @command{lilypond-book} produces a file with one of the following
877 extensions: @file{.tex}, @file{.texi}, @file{.html} or @file{.xml},
878 depending on the output format.  All of @file{.tex}, @file{.texi} and
879 @file{.xml} files need further processing.
880
881 @subheading Format-specific instructions
882
883 @subsubheading @LaTeX{}
884
885 There are two ways of processing your @LaTeX{} document for printing or
886 publishing: getting a PDF file directly with PDF@LaTeX{}, or getting a
887 PostScript file with @LaTeX{} via a DVI to PostScript translator like
888 @command{dvips}.  The first way is simpler and recommended@footnote{Note
889 that PDF@LaTeX{} and @LaTeX{} may not be both usable to compile any
890 @LaTeX{} document, that is why we explain the two ways.}, and whichever
891 way you use, you can easily convert between PostScript and PDF with
892 tools, like @command{ps2pdf} and @command{pdf2ps} included in
893 Ghostscript package.
894
895 To produce a PDF file through PDF@LaTeX{}, use
896
897 @example
898 lilypond-book --pdf yourfile.lytex
899 pdflatex yourfile.tex
900 @end example
901
902 @cindex outline fonts
903 @cindex type1 fonts
904 @cindex dvips
905 @cindex invoking dvips
906 To produce PDF output via @LaTeX{}/@command{dvips}/@command{ps2pdf}, you
907 should do
908
909 @example
910 lilypond-book yourfile.lytex
911 latex yourfile.tex
912 dvips -Ppdf yourfile.dvi
913 ps2pdf yourfile.ps
914 @end example
915
916 @noindent
917 The @file{.dvi} file created by this process will not contain
918  note heads.  This is normal; if you follow the instructions, they
919 will be included in the @file{.ps} and @file{.pdf} files.
920
921 Running @command{dvips} may produce some warnings about fonts; these
922 are harmless and may be ignored.  If you are running @command{latex} in
923 twocolumn mode, remember to add @option{-t landscape} to the
924 @command{dvips} options.
925
926 @subsubheading Texinfo
927
928 To produce a Texinfo document (in any output format), follow the normal
929 procedures for Texinfo; this is, either call @command{texi2pdf} or
930 @command{texi2dvi} or @command{makeinfo}, depending on the output format
931 you want to create.
932 @ifinfo
933 @xref{Format with texi2dvi, , , texinfo, GNU Texinfo}, and @ref{Creating
934 an Info File, , , texinfo, GNU Texinfo}.
935 @end ifinfo
936 @ifnotinfo
937 See the documentation of Texinfo for further details.
938 @end ifnotinfo
939
940
941 @subheading Command line options
942
943 @command{lilypond-book} accepts the following command line options:
944
945 @table @code
946 @item -f @var{format}
947 @itemx --format=@var{format}
948 Specify the document type to process: @code{html}, @code{latex},
949 @code{texi} (the default) or @code{docbook}.  If this option is missing,
950 @command{lilypond-book} tries to detect the format automatically, see
951 @ref{Filename extensions}.  Currently, @code{texi} is the same as
952 @code{texi-html}.
953
954 @c This complicated detail is not implemented, comment it out -jm
955 @ignore
956 The @code{texi} document type produces a Texinfo file with music
957 fragments in the printed output only.  For getting images in the HTML
958 version, the format @code{texi-html} must be used instead.
959 @end ignore
960
961 @item -F @var{filter}
962 @itemx --filter=@var{filter}
963 Pipe snippets through @var{filter}.  @code{lilypond-book} will
964 not --filter and --process at the same time.  For example,
965
966 @example
967 lilypond-book --filter='convert-ly --from=2.0.0 -' my-book.tely
968 @end example
969
970 @item -h
971 @itemx --help
972 Print a short help message.
973
974 @item -I @var{dir}
975 @itemx --include=@var{dir}
976 Add @var{dir} to the include path.  @command{lilypond-book} also looks
977 for already compiled snippets in the include path, and does not write
978 them back to the output directory, so in some cases it is necessary to
979 invoke further processing commands such as @command{makeinfo} or
980 @command{latex} with the same @option{-I @var{dir}} options.
981
982 @item -o @var{dir}
983 @itemx --output=@var{dir}
984 Place generated files in directory @var{dir}.  Running
985 @command{lilypond-book} generates lots of small files that LilyPond will
986 process.  To avoid all that garbage in the source directory, use the
987 @option{--output} command line option, and change to that directory
988 before running @command{latex} or @command{makeinfo}.
989
990 @example
991 lilypond-book --output=out yourfile.lytex
992 cd out
993 ...
994 @end example
995
996 @itemx --skip-lily-check
997 Do not fail if no lilypond output is found.  It is used for LilyPond
998 Info documentation without images.
999
1000 @itemx --skip-png-check
1001 Do not fail if no PNG images are found for EPS files.  It is used for
1002 LilyPond Info documentation without images.
1003
1004 @itemx --lily-output-dir=@var{dir}
1005 Write lily-XXX files to directory @var{dir}, link into @option{--output}
1006 directory.  Use this option to save building time for documents in
1007 different directories which share a lot of identical snippets.
1008
1009 @itemx --info-images-dir=@var{dir}
1010 Format Texinfo output so that Info will look for images of music in
1011 @var{dir}.
1012
1013 @itemx --latex-program=@var{prog}
1014 Run executable @command{prog} instead of @command{latex}.  This is
1015 useful if your document is processed with @command{xelatex}, for
1016 example.
1017
1018 @itemx --left-padding=@var{amount}
1019 Pad EPS boxes by this much.  @var{amount} is measured in millimeters,
1020 and is 3.0 by default.  This option should be used if the lines of
1021 music stick out of the right margin.
1022
1023 The width of a tightly clipped system can vary, due to notation
1024 elements that stick into the left margin, such as bar numbers and
1025 instrument names.  This option will shorten each line and move each
1026 line to the right by the same amount.
1027
1028 @item -P @var{command}
1029 @itemx --process=@var{command}
1030 Process LilyPond snippets using @var{command}.  The default command is
1031 @code{lilypond}.  @code{lilypond-book} will not @option{--filter} and
1032 @option{--process} at the same time.
1033
1034 @item --pdf
1035 Create PDF files for use with PDF@LaTeX{}.
1036
1037 @item --redirect-lilypond-output
1038 By default, output is displayed on the terminal.  This option redirects
1039 all output to log files in the same directory as the source files.
1040
1041 @itemx --use-source-file-names
1042 Write snippet output files with the same base name as their source file.
1043 This option works only for snippets included with @code{lilypondfile}
1044 and only if directories implied by @option{--output-dir} and
1045 @option{--lily-output-dir} options are different.
1046
1047 @item -V
1048 @itemx --verbose
1049 Be verbose.
1050
1051 @item -v
1052 @itemx --version
1053 Print version information.
1054 @end table
1055
1056 @knownissues
1057
1058 The Texinfo command @code{@@pagesizes} is not interpreted.  Similarly,
1059 @LaTeX{} commands that change margins and line widths after the preamble
1060 are ignored.
1061
1062 Only the first @code{\score} of a LilyPond block is processed.
1063
1064
1065 @node Filename extensions
1066 @section Filename extensions
1067
1068 You can use any filename extension for the input file, but if you do not
1069 use the recommended extension for a particular format you may need to
1070 manually specify the output format; for details, see @ref{Invoking
1071 lilypond-book}.  Otherwise, @command{lilypond-book} automatically
1072 selects the output format based on the input filename's extension.
1073
1074 @quotation
1075 @multitable @columnfractions .2 .5
1076 @item @strong{extension} @tab @strong{output format}
1077 @item
1078 @item @file{.html} @tab HTML
1079 @item @file{.htmly} @tab HTML
1080 @item @file{.itely} @tab Texinfo
1081 @item @file{.latex} @tab @LaTeX{}
1082 @item @file{.lytex} @tab @LaTeX{}
1083 @item @file{.lyxml} @tab DocBook
1084 @item @file{.tely} @tab Texinfo
1085 @item @file{.tex} @tab @LaTeX{}
1086 @item @file{.texi} @tab Texinfo
1087 @item @file{.texinfo} @tab Texinfo
1088 @item @file{.xml} @tab HTML
1089 @end multitable
1090 @end quotation
1091
1092 If you use the same filename extension for the input file than the
1093 extension @command{lilypond-book} uses for the output file, and if the
1094 input file is in the same directory as @command{lilypond-book} working
1095 directory, you must use @option{--output} option to make
1096 @command{lilypond-book} running, otherwise it will exit with an error
1097 message like @qq{Output would overwrite input file}.
1098
1099
1100 @node lilypond-book templates
1101 @section lilypond-book templates
1102
1103 These templates are for use with @code{lilypond-book}.  If you're not familiar
1104 with this program, please refer to
1105 @ref{lilypond-book}.
1106
1107 @subsection LaTeX
1108
1109 You can include LilyPond fragments in a LaTeX document.
1110
1111 @example
1112 \documentclass[]@{article@}
1113
1114 \begin@{document@}
1115
1116 Normal LaTeX text.
1117
1118 \begin@{lilypond@}
1119 \relative c'' @{
1120   a4 b c d
1121 @}
1122 \end@{lilypond@}
1123
1124 More LaTeX text, and options in square brackets.
1125
1126 \begin@{lilypond@}[fragment,relative=2,quote,staffsize=26,verbatim]
1127 d4 c b a
1128 \end@{lilypond@}
1129 \end@{document@}
1130 @end example
1131
1132 @subsection Texinfo
1133
1134 You can include LilyPond fragments in Texinfo; in fact, this entire manual
1135 is written in Texinfo.
1136
1137 @example
1138 \input texinfo @c -*-texinfo-*-
1139 @@node Top
1140 @@top
1141
1142 Texinfo text
1143
1144 @@lilypond
1145 \relative c' @{
1146   a4 b c d
1147 @}
1148 @@end lilypond
1149
1150 More Texinfo text, and options in brackets.
1151
1152 @@lilypond[verbatim,fragment,ragged-right]
1153 d4 c b a
1154 @@end lilypond
1155
1156 @@bye
1157 @end example
1158
1159
1160 @subsection html
1161
1162 @example
1163 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
1164 <!-- header_tag -->
1165 <HTML>
1166 <body>
1167
1168 <p>
1169 Documents for lilypond-book may freely mix music and text.  For
1170 example,
1171 <lilypond>
1172 \relative c'' @{
1173   a4 b c d
1174 @}
1175 </lilypond>
1176 </p>
1177
1178 <p>
1179 Another bit of lilypond, this time with options:
1180
1181 <lilypond fragment quote staffsize=26 verbatim>
1182 a4 b c d
1183 </lilypond>
1184 </p>
1185
1186 </body>
1187 </html>
1188
1189
1190 @end example
1191
1192 @subsection xelatex
1193
1194 @verbatim
1195 \documentclass{article}
1196 \usepackage{ifxetex}
1197 \ifxetex
1198 %xetex specific stuff
1199 \usepackage{xunicode,fontspec,xltxtra}
1200 \setmainfont[Numbers=OldStyle]{Times New Roman}
1201 \setsansfont{Arial}
1202 \else
1203 %This can be empty if you are not going to use pdftex
1204 \usepackage[T1]{fontenc}
1205 \usepackage[utf8]{inputenc}
1206 \usepackage{mathptmx}%Times
1207 \usepackage{helvet}%Helvetica
1208 \fi
1209 %Here you can insert all packages that pdftex also understands
1210 \usepackage[ngerman,finnish,english]{babel}
1211 \usepackage{graphicx}
1212
1213 \begin{document}
1214 \title{A short document with LilyPond and xelatex}
1215 \maketitle
1216
1217 Normal \textbf{font} commands inside the \emph{text} work,
1218 because they \textsf{are supported by \LaTeX{} and XeteX.}
1219 If you want to use specific commands like \verb+\XeTeX+, you
1220 should include them again in a \verb+\ifxetex+ environment.
1221 You can use this to print the \ifxetex \XeTeX{} command \else
1222 XeTeX command \fi which is not known to normal \LaTeX .
1223
1224 In normal text you can easily use LilyPond commands, like this:
1225
1226 \begin{lilypond}
1227 {a2 b c'8 c' c' c'}
1228 \end{lilypond}
1229
1230 \noindent
1231 and so on.
1232
1233 The fonts of snippets set with LilyPond will have to be set from
1234 inside
1235 of the snippet.  For this you should read the AU on how to use
1236 lilypond-book.
1237
1238 \selectlanguage{ngerman}
1239 Auch Umlaute funktionieren ohne die \LaTeX -Befehle, wie auch alle
1240 anderen
1241 seltsamen Zeichen: __ ______, wenn sie von der Schriftart
1242 unterst__tzt werden.
1243 \end{document}
1244 @end verbatim
1245
1246
1247 @node Sharing the table of contents
1248 @section Sharing the table of contents
1249
1250 These functions already exist in the OrchestralLily package:
1251
1252 @example
1253 @url{http://repo.or.cz/w/orchestrallily.git}
1254 @end example
1255
1256 For greater flexibility in text handling, some users prefer to
1257 export the table of contents from lilypond and read it into
1258 @LaTeX{}.
1259
1260 @subsubheading Exporting the ToC from LilyPond
1261
1262 This assumes that your score has multiple movements in the same lilypond
1263 output file.
1264
1265 @smallexample
1266 #(define (oly:create-toc-file layout pages)
1267   (let* ((label-table (ly:output-def-lookup layout 'label-page-table)))
1268     (if (not (null? label-table))
1269       (let* ((format-line (lambda (toc-item)
1270              (let* ((label (car toc-item))
1271                     (text  (caddr toc-item))
1272                     (label-page (and (list? label-table)
1273                                      (assoc label label-table)))
1274                     (page (and label-page (cdr label-page))))
1275                (format #f "~a, section, 1, @{~a@}, ~a" page text label))))
1276              (formatted-toc-items (map format-line (toc-items)))
1277              (whole-string (string-join formatted-toc-items ",\n"))
1278              (output-name (ly:parser-output-name parser))
1279              (outfilename (format "~a.toc" output-name))
1280              (outfile (open-output-file outfilename)))
1281         (if (output-port? outfile)
1282             (display whole-string outfile)
1283             (ly:warning (_ "Unable to open output file ~a for the TOC information") outfilename))
1284         (close-output-port outfile)))))
1285
1286 \paper @{
1287   #(define (page-post-process layout pages) (oly:create-toc-file layout pages))
1288 @}
1289 @end smallexample
1290
1291 @subsubheading Importing the ToC into LaTeX
1292
1293 In LaTeX, the header should include:
1294
1295 @c no, this doesn't require the smallexample, but since the other
1296 @c two blocks on this page use it, I figured I might as well
1297 @c user it here as well, for consistency. -gp
1298 @smallexample
1299 \usepackage@{pdfpages@}
1300 \includescore@{nameofthescore@}
1301 @end smallexample
1302
1303 @noindent
1304 where @code{\includescore} is defined as:
1305
1306 @smallexample
1307 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1308 % \includescore@{PossibleExtension@}
1309 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1310
1311 % Read in the TOC entries for a PDF file from the corresponding .toc file.
1312 % This requires some heave latex tweaking, since reading in things from a file
1313 % and inserting it into the arguments of a macro is not (easily) possible
1314
1315 % Solution by Patrick Fimml on #latex on April 18, 2009:
1316 % \readfile@{filename@}@{\variable@}
1317 % reads in the contents of the file into \variable (undefined if file
1318 % doesn't exist)
1319 \newread\readfile@@f
1320 \def\readfile@@line#1@{%
1321 @{\catcode`\^^M=10\global\read\readfile@@f to \readfile@@tmp@}%
1322 \edef\do@{\noexpand\g@@addto@@macro@{\noexpand#1@}@{\readfile@@tmp@}@}\do%
1323 \ifeof\readfile@@f\else%
1324 \readfile@@line@{#1@}%
1325 \fi%
1326 @}
1327 \def\readfile#1#2@{%
1328 \openin\readfile@@f=#1 %
1329 \ifeof\readfile@@f%
1330 \typeout@{No TOC file #1 available!@}%
1331 \else%
1332 \gdef#2@{@}%
1333 \readfile@@line@{#2@}%
1334 \fi
1335 \closein\readfile@@f%
1336 @}%
1337
1338
1339 \newcommand@{\includescore@}[1]@{
1340 \def\oly@@fname@{\oly@@basename\@@ifmtarg@{#1@}@{@}@{_#1@}@}
1341 \let\oly@@addtotoc\undefined
1342 \readfile@{\oly@@xxxxxxxxx@}@{\oly@@addtotoc@}
1343 \ifx\oly@@addtotoc\undefined
1344 \includepdf[pages=-]@{\oly@@fname@}
1345 \else
1346 \edef\includeit@{\noexpand\includepdf[pages=-,addtotoc=@{\oly@@addtotoc@}]
1347 @{\oly@@fname@}@}\includeit
1348 \fi
1349 @}
1350 @end smallexample
1351
1352
1353 @node Alternate methods of mixing text and music
1354 @section Alternative methods of mixing text and music
1355
1356 Other means of mixing text and music (without
1357 @command{lilypond-book}) are discussed in
1358 @ref{LilyPond output in other programs}.
1359
1360