]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/usage/running.itely
5ab8e1f37045abd4c4c4887c3b59a7a992a28a9d
[lilypond.git] / Documentation / usage / running.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.17.6"
12
13
14 @node Running lilypond
15 @chapter Running @command{lilypond}
16
17 This chapter details the technicalities of running LilyPond.
18
19 @menu
20 * Normal usage::
21 * Command-line usage::
22 * Error messages::
23 * Common errors::
24 @end menu
25
26
27 @node Normal usage
28 @section Normal usage
29
30 Most users run LilyPond through a GUI; if you have not done so
31 already, please read the @rlearning{Tutorial}.  If you use an alternate
32 editor to write lilypond files, see the documentation for that
33 program.
34
35
36 @node Command-line usage
37 @section Command-line usage
38
39 This section contains extra information about using LilyPond on the
40 command-line.  This may be desirable to pass extra options to the
41 program.  In addition, there are certain extra @q{helper} programs (such
42 as @code{midi2ly}) which are only available on the command-line.
43
44 By @q{command-line}, we mean the command line in the operating system.
45 Windows users might be more familiar with the terms @q{DOS shell} or
46 @q{command shell}.  MacOS@tie{}X users might be more familiar with the terms
47 @q{terminal} or @q{console}.  Some additional setup is required
48 for MacOS@tie{}X users; please see @rweb{MacOS X}.
49
50 Describing how to use this part of an operating system is outside the
51 scope of this manual; please consult other documentation on this topic
52 if you are unfamiliar with the command-line.
53
54 @menu
55 * Invoking LilyPond::
56 * Basic command line options for LilyPond::
57 * Advanced command line options for LilyPond::
58 * Environment variables::
59 * LilyPond in chroot jail::
60 @end menu
61
62 @node Invoking LilyPond
63 @unnumberedsubsec Invoking @command{lilypond}
64
65 The @command{lilypond} executable may be called as follows from
66 the command line.
67
68 @example
69 lilypond [@var{option}]@dots{} @var{file}@dots{}
70 @end example
71
72 When invoked with a filename that has no extension, the @file{.ly}
73 extension is tried first.  To read input from stdin, use a
74 dash (@code{-}) for @var{file}.
75
76 When @file{filename.ly} is processed it will produce @file{filename.ps}
77 and @file{filename.pdf} as output.  Several files can be specified;
78 they will each be processed independently.  @footnote{The status of
79 GUILE is not reset after processing a @code{.ly} file, so be careful
80 not to change any system defaults from within Scheme.}
81
82 If @file{filename.ly} contains more than one @code{\book}
83 block, then the rest of the scores will be output in numbered files,
84 starting with @file{filename-1.pdf}.  In addition, the value of
85 @code{output-suffix} will be inserted between the basename and the
86 number.  An input file containing
87
88 @example
89 #(define output-suffix "violin")
90 \score @{ @dots{} @}
91 #(define output-suffix "cello")
92 \score @{ @dots{} @}
93 @end example
94
95 @noindent
96 will output @var{base}@file{-violin.pdf} and
97 @var{base}@file{-cello-1.pdf}.
98
99
100 @unnumberedsubsubsec Using LilyPond with standard shell features
101
102 Since LilyPond is a command line application, features of the @q{shell}
103 used for calling LilyPond can also be put to good use.
104
105 For example:
106
107 @example
108 lilypond *.ly
109 @end example
110
111 @noindent
112 will process all LilyPond files in the current directory.
113
114 Redirecting the console output (e.g. to a file) may also be useful:
115
116 @example
117 lilypond file.ly 1> stdout.txt
118
119 lilypond file.ly 2> stderr.txt
120
121 lilypond file.ly &> all.txt
122 @end example
123
124 @noindent
125 Redirects @q{normal} output, @q{errors} only or @q{everything},
126 respectively, to a text file.  Consult the documentation for your
127 particular shell, Command (Windows), Terminal or Console
128 applications (MacOS X) to see if output redirection is supported or if
129 the syntax is different.
130
131 The following example searches and processes all input files in the
132 current directory and all directories below it recursively.  The output
133 files will be located in the same directory that the command was run in,
134 rather than in the same directories as the original input files.
135
136 @example
137 find . -name '*.ly' -exec lilypond '@{@}' \;
138 @end example
139
140 @noindent
141 This should also work for MacOS@tie{}X users.
142
143 A Windows user would run;
144
145 @example
146 forfiles /s /M *.ly /c "cmd /c lilypond @@file"
147 @end example
148
149 @noindent
150 entering these commands in a @code{command prompt} usually found under
151 @code{Start > Accessories > Command Prompt} or for version 8 users,
152 by typing in the search window @q{command prompt}.
153
154 Alternatively, an explicit path to the top-level of your folder
155 containing all the sub-folders that have input files in them can be
156 stated using the @code{/p} option;
157
158 @example
159 forfiles /s /p C:\Documents\MyScores /M *.ly /c "cmd /c lilypond @@file"
160 @end example
161
162 If there are spaces in the path to the top-level folder, then the whole
163 path needs to be inside double quotes;
164
165 @example
166 forfiles /s /p "C:\Documents\My Scores" /M *.ly /c "cmd /c lilypond @@file"
167 @end example
168
169
170 @node Basic command line options for LilyPond
171 @unnumberedsubsec Basic command line options for LilyPond
172
173 @cindex Invoking @command{lilypond}
174 @cindex command line options for @command{lilypond}
175 @cindex options, command line
176 @cindex switches
177
178 The following options are supported:
179
180 @table @code
181
182 @item -b, --bigpdfs
183 @cindex bigpdfs
184
185 PDF files generated will be much larger than normal (due to little or no
186 font optimization).  However, if two or more PDF files are included
187 within @w{@code{pdftex}}, @w{@code{xetex}} or @w{@code{luatex}}
188 documents they can then be processed further via ghostscript (merging
189 duplicated font data) resulting in @emph{significantly} smaller PDF
190 files.
191
192 @example
193 lilypond -b myfile
194 @end example
195
196 Then run @code{ghostscript};
197
198 @example
199 gs -q -sDEVICE=pdfwrite -o gsout.pdf myfile.pdf
200 @end example
201
202 @code{pdfsizeopt.py} can then be used to further optimize the size
203 of file;
204
205 @example
206 pdfsizeopt.py --use-multivalent=no gsout.pdf final.pdf
207 @end example
208
209
210 @item -d, --define-default=@var{var}=@var{val}
211 See @ref{Advanced command line options for LilyPond}.
212
213 @cindex Scheme, expression evaluation
214 @cindex expression evaluation, Scheme
215
216 @item -e, --evaluate=@var{expr}
217 Evaluate the Scheme @var{expr} before parsing any @file{.ly} files.
218 Multiple @option{-e} options may be given, they will be evaluated
219 sequentially.
220
221 The expression will be evaluated in the @code{guile-user} module, so
222 if you want to use definitions in @var{expr}, use
223
224 @example
225 lilypond -e '(define-public a 42)'
226 @end example
227
228 @noindent
229 on the command-line, and include
230
231 @example
232 #(use-modules (guile-user))
233 @end example
234
235 @noindent
236 at the top of the @code{.ly} file.
237
238 @warning{Windows users must use double quotes instead of single quotes.}
239
240 @cindex output, format
241 @cindex format, output
242
243 @item -f, --format=@var{format}
244 which formats should be written.  Choices for @code{format} are
245 @code{ps}, @code{pdf}, and @code{png}.
246
247 Example: @code{lilypond -fpng @var{filename}.ly}
248
249 @noindent
250 For @code{svg} and @code{eps} formats use the @code{-dbackend} option.
251 See @ref{Advanced command line options for LilyPond}.
252
253 @item -h, --help
254 Show a summary of usage.
255
256 @item -H, --header=@var{FIELD}
257 Dump a header field to file @file{BASENAME.@var{FIELD}}.
258
259 @item -i, --init=@var{file}
260 Set init file to @var{file} (default: @file{init.ly}).
261
262 @cindex file searching
263 @cindex search path
264
265 @item -I, --include=@var{directory}
266 Add @var{directory} to the search path for input files.
267
268 Multiple -I options may be given.  The search will start in the first
269 defined directory, and if the file to be included is not found the
270 search will continue in subsequent directories.
271
272 @cindex chroot jail, running inside
273
274 @item -j, --jail=@var{user},@var{group},@var{jail},@var{dir}
275 Run @command{lilypond} in a chroot jail.
276
277 The @option{--jail} option provides a more flexible alternative to
278 @option{-dsafe}, when LilyPond formatting is being provided via a web
279 server, or whenever LilyPond executes commands sent by external sources
280 (see @ref{Advanced command line options for LilyPond}).
281
282 It works by changing the root of @command{lilypond} to @var{jail} just
283 before starting the actual compilation process.  The user and group are
284 then changed to match those provided, and the current directory is
285 changed to @var{dir}.  This setup guarantees that it is not possible (at
286 least in theory) to escape from the jail.  Note that for @option{--jail}
287 to work, @command{lilypond} must be run as root, which is usually
288 accomplished in a safe way using @command{sudo}.
289
290 Setting up a jail can be a relatively complex matter, as we must be sure
291 that LilyPond is able to find whatever it needs to compile the source
292 @emph{inside} the jail itself.  A typical chroot jail will comprise the
293 following steps:
294
295 @table @asis
296
297 @item Setting up a separate filesystem
298 A separate filesystem should be created for LilyPond, so that it can be
299 mounted with safe options such as @code{noexec}, @code{nodev}, and
300 @code{nosuid}.  In this way, it is impossible to run executables or to
301 write directly to a device from LilyPond.  If you do not want to create a
302 separate partition, just create a file of reasonable size and use it to
303 mount a loop device.  A separate filesystem also guarantees that LilyPond
304 cannot write more space than it is allowed.
305
306 @item Setting up a separate user
307 A separate user and group (say, @code{lily}/@code{lily}) with low
308 privileges should be used to run LilyPond inside the jail.  There should
309 be a single directory writable by this user, which should be passed in
310 @var{dir}.
311
312 @item Preparing the jail
313 LilyPond needs to read a number of files while running.  All these files
314 are to be copied into the jail, under the same path they appear in the
315 real root filesystem.  The entire content of the LilyPond installation
316 (e.g., @file{/usr/share/lilypond}) should be copied.
317
318 If problems arise, the simplest way to trace them down is to run
319 LilyPond using @command{strace}, which will allow you to determine which
320 files are missing.
321
322 @item Running LilyPond
323 In a jail mounted with @code{noexec} it is impossible to execute any
324 external program.  Therefore LilyPond must be run with a backend that
325 does not require any such program.  As we have already mentioned, it
326 must be run with superuser privileges (which, of course, it will lose
327 immediately), possibly using @command{sudo}.  It is also good practice
328 to limit the number of seconds of CPU time LilyPond can use (e.g., using
329 @command{ulimit@tie{}-t}), and, if your operating system supports it,
330 the amount of memory that can be allocated.  Also see
331 @ref{LilyPond in chroot jail}.
332 @end table
333
334 @cindex loglevel
335 @cindex output, verbosity
336
337 @item -l, --loglevel=@var{LEVEL}
338 Set the verbosity of the console output to @var{LEVEL}. Possible values
339 are:
340
341 @table @code
342
343 @item NONE
344 No output at all, not even error messages.
345
346 @item ERROR
347 Only error messages, no warnings or progress messages.
348
349 @item WARN
350 Warnings and error messages, no progress.
351
352 @item BASIC_PROGRESS
353 Basic progress messages (success), warnings and errors.
354
355 @item PROGRESS
356 All progress messages, warnings and errors.
357
358 @item INFO (default)
359 Progress messages, warnings, errors and further execution information.
360
361 @item DEBUG
362 All possible messages, including verbose debug output.
363
364 @end table
365
366 @cindex directory, redirect output
367 @cindex output, setting filename
368 @cindex output, directory
369
370 @item -o, --output=@var{FILE} or @var{FOLDER}
371 Set the default output file to @var{FILE} or, if a folder with that name
372 exists, direct the output to @var{FOLDER}, taking the file name from the
373 input file.  The appropriate suffix will be added (e.g. @code{.pdf} for
374 pdf) in both cases.
375
376 @cindex PS (Postscript), output
377 @cindex Postscript (PS), output
378 @cindex output, PS (Postscript)
379
380 @item --ps
381 Generate PostScript.
382
383 @cindex PNG (Portable Network Graphics), output
384 @cindex output, PNG (Portable Network Graphics)
385
386 @item --png
387 Generate pictures of each page, in PNG format.  This implies
388 @option{--ps}.  The resolution in DPI of the image may be set with
389 @example
390 -dresolution=110
391 @end example
392
393 @cindex PDF (Portable Document Format), output
394 @cindex output, PDF (Portable Document Format)
395
396 @item --pdf
397 Generate PDF.  This implies @option{--ps}.
398
399 @item -v, --version
400 Show version information.
401
402 @item -V, --verbose
403 Be verbose: show full paths of all files read, and give timing
404 information.
405
406 @item -w, --warranty
407 Show the warranty with which GNU LilyPond comes.  (It comes with
408 @strong{NO WARRANTY}!)
409
410 @end table
411
412
413 @node Advanced command line options for LilyPond
414 @unnumberedsubsec Advanced command line options for LilyPond
415
416 @table @code
417
418 @item -d@var{[option-name]}=@var{[value]},
419 --define-default=@var{[option-name]}=@var{[value]}
420 This sets the equivalent internal Scheme function to @var{value}.  For
421 example;
422
423 @example
424 -dbackend=svg
425 @end example
426
427 If a @var{value} is not supplied, then the default value is used.  The
428 prefix @code{no-} may be added to @var{option-name} to switch @q{off} an
429 option.  For example;
430
431 @cindex point and click, command line
432
433 @example
434 -dpoint-and-click=#f
435 @end example
436
437 @noindent
438 is the same as
439 @example
440 -dno-point-and-click
441 @end example
442 @end table
443
444 @noindent The following are supported along with their respective
445 default values:
446
447 @multitable @columnfractions .33 .16 .51
448 @item @strong{Symbol}
449 @tab @strong{Value}
450 @tab @strong{Explanation/Options}
451
452 @item @code{anti-alias-factor}
453 @tab @code{1}
454 @tab Render at a higher resolution (using the given factor) and scale
455 down the result to prevent @q{jaggies} in @code{PNG} images.
456
457 @item @code{aux-files}
458 @tab @code{#t}
459 @tab Create @code{.tex}, @code{.texi} and @code{.count} files when used
460 with the @code{eps} backend option.
461
462 @item @code{backend}
463 @tab @code{ps}
464 @tab This is the default setting.  Postscript files (default) include
465 @code{TTF}, @code{Type1} and @code{OTF} fonts.  No @q{subsetting} of
466 these fonts is done.  Be aware that using @q{oriental} character sets
467 can lead to very large file sizes.
468
469 @item
470 @tab @code{eps}
471 @tab Used as default by the @command{lilypond-book} command.  This dumps
472 every page as both a single file with all pages and fonts included and
473 as separate encapsulated postscript files for each page but without fonts
474 included.
475
476 @item
477 @tab @code{null}
478 @tab Do not output a printed score.  This has the same effect as
479 @code{-dno-print-pages}.
480
481 @item
482 @tab @code{scm}
483 @tab This dumps out the raw, internal Scheme-based drawing commands.
484
485 @item
486 @tab @code{svg}
487 @tab Scalable Vector Graphics.
488 A single SVG file is created for every page of output.  Music glyphs
489 are encoded as vector graphics, but text fonts are @emph{not} embedded
490 in the SVG files.  Any SVG viewer will therefore need the relevant text
491 fonts to be available to it for proper rendering of both text and
492 lyrics.  It is recommended to not use font @q{lists} or @q{aliases}
493 in case an SVG viewer is unable to handle them.  When using
494 @emph{Web Open Font Format} (WOFF) files the additional
495 @code{--svg-woff} switch is required.
496 @end multitable
497
498 @noindent
499 @strong{Note for backend svg output:}
500 By default in svg output LilyPond will use the generic
501 @code{font-family} values of @code{serif}, @code{sans-serif}, or
502 @code{monospace}.  Therefore, when using the backend @code{svg} command
503 you should explicitly define particular default fonts in your source
504 file;
505
506 @quotation
507 @verbatim
508 \paper  {
509   #(define fonts
510     (make-pango-font-tree "TeX Gyre Schola"
511                           "TeX Gyre Heros"
512                           "TeX Gyre Cursor"
513                           (/ staff-height pt 20)))
514 }
515 @end verbatim
516 @end quotation
517
518 Also see @ruser{Entire document fonts}.
519
520 @multitable @columnfractions .33 .16 .51
521 @item @code{check-internal-types}
522 @tab @code{#f}
523 @tab Check every property assignment for types.
524
525 @item @code{clip-systems}
526 @tab @code{#f}
527 @tab Extract music fragments out of a score.  This requires that the
528 @code{clip-regions} function has been defined within the @code{\layout}
529 block.  See @ruser{Extracting fragments of music}.  No fragments are
530 extracted though if used with the @option{-dno-print-pages} option.
531
532 @item @code{datadir}
533 @tab
534 @tab Prefix for data files (read-only).
535
536 @item @code{debug-gc}
537 @tab @code{#f}
538 @tab Dump memory debugging statistics.
539
540 @item @code{debug-gc-assert-parsed-dead}
541 @tab @code{#f}
542 @tab For memory debugging: Ensure that all references to parsed objects
543 are dead. This is an internal option, and is switched on automatically
544 for @code{`-ddebug-gc'}.
545
546 @item @code{debug-lexer}
547 @tab @code{#f}
548 @tab Debug the flex lexer.
549
550 @item @code{debug-page-breaking-scoring}
551 @tab @code{#f}
552 @tab Dump scores for many different page breaking configurations.
553
554 @item @code{debug-parser}
555 @tab @code{#f}
556 @tab Debug the bison parser.
557
558 @item @code{debug-property-callbacks}
559 @tab @code{#f}
560 @tab Debug cyclic callback chains.
561
562 @item @code{debug-skylines}
563 @tab @code{#f}
564 @tab Debug skylines.
565
566 @item @code{delete-intermediate-files}
567 @tab @code{#t}
568 @tab Delete the unusable, intermediate @code{.ps} files created during
569 compilation.
570
571 @item @code{dump-cpu-profile}
572 @tab @code{#f}
573 @tab Dump timing information (system-dependent).
574
575 @item @code{dump-profile}
576 @tab @code{#f}
577 @tab Dump memory and time information for each file.
578
579 @item @code{dump-signatures}
580 @tab @code{#f}
581 @tab Dump output signatures of each system. Used for regression testing.
582
583 @item @code{embed-source-code}
584 @tab @code{#f}
585 @tab Embed the LilyPond source files inside the generated PDF document.
586
587 @item @code{eps-box-padding}
588 @tab @code{#f}
589 @tab Pad left edge of the output EPS bounding box by the given amount
590 (in mm).
591
592 @item @code{font-export-dir}
593 @tab @code{#f [dir]}
594 @tab Directory for exporting fonts as PostScript files.
595
596 @item @code{gs-load-fonts}
597 @tab @code{#f}
598 @tab Load fonts via Ghostscript.
599
600 @item @code{gs-load-lily-fonts}
601 @tab @code{#f}
602 @tab Load only the LilyPond fonts via Ghostscript.
603
604 @item @code{gs-never-embed-fonts}
605 @tab @code{#f}
606 @tab Make Ghostscript embed only TrueType fonts and no other font format.
607
608 @item @code{gui}
609 @tab @code{#f}
610 @tab Runs silently and redirect all output to a log file.
611 @end multitable
612
613 @noindent
614 @strong{Note to Windows users:} By default @code{lilypond.exe} outputs
615 all progress information to the command window,
616 @code{lilypond-windows.exe} does not and returns a prompt, with no
617 progress information, immediately at the command line.  The
618 @option{-dgui} option can be used in this case to redirect output to a
619 log file.
620
621 @multitable @columnfractions .33 .16 .51
622 @item @code{help}
623 @tab @code{#f}
624 @tab Show this help.
625
626 @item @code{include-book-title-preview}
627 @tab @code{#t}
628 @tab Include book titles in preview images.
629
630 @item @code{include-eps-fonts}
631 @tab @code{#t}
632 @tab Include fonts in separate-system EPS files.
633
634 @item @code{include-settings}
635 @tab @code{#f}
636 @tab Include file for global settings, this is included before the score
637 is processed.
638
639 @item @code{job-count}
640 @tab @code{#f}
641 @tab Process in parallel, using the given number of jobs.
642
643 @item @code{log-file}
644 @tab @code{#f [file]}
645 @tab If string @code{FOO} is given as a second argument,
646 redirect output to the log file @code{FOO.log}.
647
648 @item @code{max-markup-depth}
649 @tab @code{1024}
650 @tab Maximum depth for the markup tree. If a markup has more levels,
651 assume it will not terminate on its own, print a warning and return a
652 null markup instead.
653
654 @item @code{midi-extension}
655 @tab @code{"midi"}
656 @tab Set the default file extension for MIDI output file to given
657 string.
658
659 @item @code{music-strings-to-paths}
660 @tab @code{#f}
661 @tab Convert text strings to paths when glyphs belong to a music font.
662
663 @item @code{paper-size}
664 @tab @code{\"a4\"}
665 @tab Set default paper size.  Note the string must be enclosed in
666 escaped double quotes.
667
668 @item @code{pixmap-format}
669 @tab @code{png16m}
670 @tab Set GhostScript's output format for pixel images.
671
672 @item @code{point-and-click}
673 @tab @code{#t}
674 @tab Add @q{point & click} links to PDF and SVG output.
675 See @ref{Point and click}.
676
677 @item @code{preview}
678 @tab @code{#f}
679 @tab Create preview images in addition to normal output.
680 @end multitable
681
682 @noindent
683 This option is supported by all backends; @code{pdf}, @code{png},
684 @code{ps}, @code{eps} and @code{svg}, but not @code{scm}.  It generates
685 an output file, in the form @code{myFile.preview.extension}, containing
686 the titles and the first system of music.  If @code{\book} or
687 @code{\bookpart} blocks are used, the titles of @code{\book},
688 @code{\bookpart} or @code{\score} will appear in the output, including
689 the first system of every @code{\score} block if the @code{\paper}
690 variable @code{print-all-headers} is set to @code{#t}.
691
692 To suppress the usual output, use the @option{-dprint-pages} or
693 @option{-dno-print-pages} options according to your requirements.
694
695 @multitable @columnfractions .33 .16 .51
696 @item @code{print-pages}
697 @tab @code{#t}
698 @tab Generate full pages, the default.  @option{-dno-print-pages} is
699 useful in combination with @option{-dpreview}.
700
701 @item @code{profile-property-accesses}
702 @tab @code{#f}
703 @tab Keep statistics of @code{get_property()} function calls.
704
705 @item @code{protected-scheme-parsing}
706 @tab @code{#t}
707 @tab Continue when errors in inline scheme are caught in the parser. If
708 set to @code{#f}, halt on errors and print a stack trace.
709
710 @item @code{read-file-list}
711 @tab @code{#f [file]}
712 @tab Specify name of a file which contains a list of input files to be
713 processed.
714
715 @item @code{relative-includes}
716 @tab @code{#f}
717 @tab When processing an @code{\include} command, look for the included
718 file relative to the current file (instead of the root file).
719
720 @item @code{resolution}
721 @tab @code{101}
722 @tab Set resolution for generating @code{PNG} pixmaps to given value (in
723 dpi).
724
725 @item @code{safe}
726 @tab @code{#f}
727 @tab Do not trust the @code{.ly} input.
728 @end multitable
729
730 @noindent
731 When LilyPond formatting is available through a web server, either the
732 @option{--safe} or the @option{--jail} option @b{MUST} be passed.  The
733 @option{--safe} option will prevent inline Scheme code from wreaking
734 havoc, e.g,
735
736 @quotation
737 @verbatim
738 #(s ystem "rm -rf /")  % too dangerous to write correctly
739 {
740   c4^$(ly:gulp-file "/etc/passwd") % malicious but not destructive
741 }
742 @end verbatim
743 @end quotation
744
745 The @option{-dsafe} option works by evaluating in-line Scheme
746 expressions in a special safe module.  This is derived from GUILE
747 @file{safe-r5rs} module, but also adds a number of functions of the
748 LilyPond API which are listed in @file{scm/safe-lily.scm}.
749
750 In addition, safe mode disallows @code{\include} directives and
751 disables the use of backslashes in @TeX{} strings.  It is also not
752 possible to import LilyPond variables into Scheme while in safe mode.
753
754 @option{-dsafe} does @emph{not} detect resource overuse, so it is still
755 possible to make the program hang indefinitely, for example by feeding
756 cyclic data structures into the backend.  Therefore, if using LilyPond
757 on a publicly accessible webserver, the process should be limited in
758 both CPU and memory usage.
759
760 Safe mode will prevent many useful LilyPond snippets from being
761 compiled.
762
763 The @option{--jail} is an even more secure alternative, but requires
764 more work to set up. See @ref{Basic command line options for LilyPond}.
765
766 @multitable @columnfractions .33 .16 .51
767 @item @code{separate-log-files}
768 @tab @code{#f}
769 @tab For input files @code{FILE1.ly}, @code{FILE2.ly}, etc. output log
770 data to files @code{FILE1.log}, @code{FILE2.log}@dots{}
771
772 @item @code{show-available-fonts}
773 @tab @code{#f}
774 @tab List available font names.
775
776 @item @code{strict-infinity-checking}
777 @tab @code{#f}
778 @tab Force a crash on encountering @code{Inf} and @code{NaN} floating
779 point exceptions.
780
781 @item @code{strip-output-dir}
782 @tab @code{#t}
783 @tab Don't use directories from input files while constructing output
784 file names.
785
786 @item @code{strokeadjust}
787 @tab @code{#f}
788 @tab Force PostScript stroke adjustment.  This option is mostly
789 relevant when a PDF is generated from PostScript output (stroke
790 adjustment is usually enabled automatically for low-resolution bitmap
791 devices).  Without this option, PDF previewers tend to produce widely
792 inconsistent stem widths at resolutions typical for screen display.  The
793 option does not noticeably affect print quality and causes large file
794 size increases in PDF files.
795
796 @item @code{svg-woff}
797 @tab @code{#f}
798 @tab This option is required when using Web Open Font Format (WOFF) font
799 files with the backend @code{svg} command.  A single SVG file is created
800 for every page of output.  Apart from LilyPond's own music glyphs, no
801 other font information will be included.  Any SVG viewer will therefore
802 require the fonts be available to it for the proper rendering of both
803 text and lyrics.  It is also recommended not to use any font @q{aliases}
804 or @q{lists} in case the SVG viewer cannot handle them.
805
806 @item @code{trace-memory-frequency}
807 @tab @code{#f}
808 @tab Record Scheme cell usage this many times per second.  Dump the
809 results to @code{FILE.stacks} and @code{FILE.graph}.
810
811 @item @code{trace-scheme-coverage}
812 @tab @code{#f}
813 @tab Record coverage of Scheme files in @code{FILE.cov}.
814
815 @item @code{verbose}
816 @tab @code{#f}
817 @tab Verbose output, i.e. loglevel at DEBUG (read-only).
818
819 @item @code{warning-as-error}
820 @tab @code{#f}
821 @tab Change all warning and @q{programming error} messages into errors.
822 @end multitable
823
824
825 @node Environment variables
826 @unnumberedsubsec Environment variables
827
828 @cindex LANG
829 @cindex LILYPOND_DATADIR
830
831 @command{lilypond} recognizes the following environment variables:
832 @table @code
833 @item LILYPOND_DATADIR
834 This specifies a directory where locale messages and
835 data files will be looked up by default.  The directory should contain
836 subdirectories called @file{ly/}, @file{ps/}, @file{tex/}, etc.
837
838 @item LANG
839 This selects the language for the warning messages.
840
841 @item LILYPOND_LOGLEVEL
842 The default loglevel. If LilyPond is called without an explicit loglevel
843 (i.e. no @option{--loglevel} command line option), this value is used.
844
845 @item LILYPOND_GC_YIELD
846 A variable, as a percentage, that tunes memory management
847 behavior.  A higher values means the program uses more memory, a
848 smaller value means more CPU time is used.  The default value is
849 @code{70}.
850
851 @end table
852
853
854 @node LilyPond in chroot jail
855 @unnumberedsubsec LilyPond in chroot jail
856
857 Setting up the server to run LilyPond in a chroot jail is a complicated
858 task.  The steps are listed below.  Examples in the steps are from
859 Ubuntu GNU/Linux, and may require the use of @code{sudo} as appropriate.
860
861 @itemize
862
863 @item Install the necessary packages: LilyPond, GhostScript, and ImageMagick.
864
865 @item Create a new user by the name of @code{lily}:
866
867 @example
868 adduser lily
869 @end example
870
871 @noindent
872 This will create a new group for the @code{lily} user as well, and a
873 home folder, @code{/home/lily}
874
875 @item In the home folder of the @code{lily} user create a file to use as a
876 separate filesystem:
877
878 @example
879 dd if=/dev/zero of=/home/lily/loopfile bs=1k count= 200000
880 @end example
881
882 @noindent
883 This example creates a 200MB file for use as the jail filesystem.
884
885 @item Create a loop device, make a file system and mount it, then create
886 a folder that can be written by the @code{lily} user:
887
888 @example
889 mkdir /mnt/lilyloop
890 losetup /dev/loop0 /home/lily/loopfile
891 mkfs -t ext3 /dev/loop0 200000
892 mount -t ext3 /dev/loop0 /mnt/lilyloop
893 mkdir /mnt/lilyloop/lilyhome
894 chown lily /mnt/lilyloop/lilyhome
895 @end example
896
897 @item In the configuration of the servers, the JAIL will be @code{/mnt/lilyloop}
898 and the DIR will be @code{/lilyhome}.
899
900 @item Create a big directory tree in the jail by copying the necessary files, as
901 shown in the sample script below.
902
903 You can use @code{sed} to create the necessary copy commands for a given
904 executable:
905
906 @example
907 for i in "/usr/local/lilypond/usr/bin/lilypond" "/bin/sh" "/usr/bin/;  \
908   do ldd $i | sed 's/.*=> \/\(.*\/\)\([^(]*\).*/mkdir -p \1 \&\&  \
909     cp -L \/\1\2 \1\2/' | sed 's/\t\/\(.*\/\)\(.*\) (.*)$/mkdir -p  \
910       \1 \&\& cp -L \/\1\2 \1\2/' | sed '/.*=>.*/d'; done
911 @end example
912
913 @end itemize
914
915 @subheading Example script for 32-bit Ubuntu 8.04
916
917 @example
918 #!/bin/sh
919 ## defaults set here
920
921 username=lily
922 home=/home
923 loopdevice=/dev/loop0
924 jaildir=/mnt/lilyloop
925 # the prefix (without the leading slash!)
926 lilyprefix=usr/local
927 # the directory where lilypond is installed on the system
928 lilydir=/$lilyprefix/lilypond/
929
930 userhome=$home/$username
931 loopfile=$userhome/loopfile
932 adduser $username
933 dd if=/dev/zero of=$loopfile bs=1k count=200000
934 mkdir $jaildir
935 losetup $loopdevice $loopfile
936 mkfs -t ext3 $loopdevice 200000
937 mount -t ext3 $loopdevice $jaildir
938 mkdir $jaildir/lilyhome
939 chown $username $jaildir/lilyhome
940 cd $jaildir
941
942 mkdir -p bin usr/bin usr/share usr/lib usr/share/fonts $lilyprefix tmp
943 chmod a+w tmp
944
945 cp -r -L $lilydir $lilyprefix
946 cp -L /bin/sh /bin/rm bin
947 cp -L /usr/bin/convert /usr/bin/gs usr/bin
948 cp -L /usr/share/fonts/truetype usr/share/fonts
949
950 # Now the library copying magic
951 for i in "$lilydir/usr/bin/lilypond" "$lilydir/usr/bin/guile" "/bin/sh"  \
952   "/bin/rm" "/usr/bin/gs" "/usr/bin/convert"; do ldd $i | sed 's/.*=>  \
953     \/\(.*\/\)\([^(]*\).*/mkdir -p \1 \&\& cp -L \/\1\2 \1\2/' | sed  \
954       's/\t\/\(.*\/\)\(.*\) (.*)$/mkdir -p \1 \&\& cp -L \/\1\2 \1\2/'  \
955         | sed '/.*=>.*/d'; done | sh -s
956
957 # The shared files for ghostscript...
958       cp -L -r /usr/share/ghostscript usr/share
959 # The shared files for ImageMagick
960       cp -L -r /usr/lib/ImageMagick* usr/lib
961
962 ### Now, assuming that you have test.ly in /mnt/lilyloop/lilyhome,
963 ### you should be able to run:
964 ### Note that /$lilyprefix/bin/lilypond is a script, which sets the
965 ### LD_LIBRARY_PATH - this is crucial
966       /$lilyprefix/bin/lilypond -jlily,lily,/mnt/lilyloop,/lilyhome test.ly
967 @end example
968
969 @c " keep quote signs balanced for context-sensitive editors
970
971 @node Error messages
972 @section Error messages
973
974 @cindex error messages
975 Different error messages can appear while compiling a file:
976
977 @table @emph
978
979 @item Warning
980 @cindex warning
981 Something looks suspect.  If you are requesting something out of the
982 ordinary then you will understand the message, and can ignore it.
983 However, warnings usually indicate that something is wrong with the
984 input file.
985
986 @item Error
987 @cindex error
988 Something is definitely wrong.  The current processing step (parsing,
989 interpreting, or formatting) will be finished, but the next step will
990 be skipped.
991
992 @item Fatal error
993 @cindex fatal error
994 Something is definitely wrong, and LilyPond cannot continue.  This
995 happens rarely.  The most usual cause is misinstalled fonts.
996
997 @item Scheme error
998 @cindex trace, Scheme
999 @cindex call trace
1000 @cindex Scheme error
1001 Errors that occur while executing Scheme code are caught by the Scheme
1002 interpreter.  If running with the verbose option (@option{-V} or
1003 @option{--verbose}) then a call trace of the offending
1004 function call is printed.
1005
1006 @item Programming error
1007 @cindex Programming error
1008 There was some internal inconsistency.  These error messages are
1009 intended to help the programmers and debuggers.  Usually, they can be
1010 ignored.  Sometimes, they come in such big quantities that they obscure
1011 other output.
1012
1013 @item Aborted (core dumped)
1014 @cindex Aborted (core dumped)
1015 This signals a serious programming error that caused the program to
1016 crash.  Such errors are considered critical.  If you stumble on one,
1017 send a bug-report.
1018 @end table
1019
1020 @cindex errors, message format
1021 If warnings and errors can be linked to some part of the input file,
1022 then error messages have the following form
1023
1024 @example
1025 @var{filename}:@var{lineno}:@var{columnno}: @var{message}
1026 @var{offending input line}
1027 @end example
1028
1029 A line-break is inserted in the offending line to indicate the column
1030 where the error was found.  For example,
1031
1032 @example
1033 test.ly:2:19: error: not a duration: 5
1034   @{ c'4 e'
1035            5 g' @}
1036 @end example
1037
1038 These locations are LilyPond's best guess about where the warning or
1039 error occurred, but (by their very nature) warnings and errors occur
1040 when something unexpected happens.  If you can't see an error in the
1041 indicated line of your input file, try checking one or two lines
1042 above the indicated position.
1043
1044 Please note that diagnostics can be triggered at any point during the
1045 many stages of processing.  For example if there are parts of the input
1046 that are processed multiple times (i.e. in midi and layout output), or
1047 if the same music variable is used in multiple contexts the same message
1048 may appear several times.  Diagnostics produced at a @q{late} stage (i.e
1049 bar checks) might also be issued multiple times.
1050
1051 More information about errors is given in @ref{Common errors}.
1052
1053
1054 @node Common errors
1055 @section Common errors
1056
1057 The error conditions described below occur often, yet the cause
1058 is not obvious or easily found.  Once seen and understood, they
1059 are easily handled.
1060
1061
1062 @menu
1063 * Music runs off the page::
1064 * An extra staff appears::
1065 * Error message Unbound variable %::
1066 * Error message FT_Get_Glyph_Name::
1067 * Warning staff affinities should only decrease::
1068 * Error message unexpected new::
1069 * Warning this voice needs a voiceXx or shiftXx setting::
1070 @end menu
1071
1072 @node Music runs off the page
1073 @unnumberedsubsec Music runs off the page
1074
1075 Music running off the page over the right margin or appearing
1076 unduly compressed is almost always due to entering an incorrect
1077 duration on a note, causing the final note in a measure to extend
1078 over the bar line.  It is not invalid if the final note in a
1079 measure does not end on the automatically entered bar line, as the
1080 note is simply assumed to carry over into the next measure.  But
1081 if a long sequence of such carry-over measures occurs the music
1082 can appear compressed or may flow off the page because automatic
1083 line breaks can be inserted only at the end of complete measures,
1084 i.e., where all notes end before or at the end of the measure.
1085
1086 @warning{An incorrect duration can cause line breaks to be
1087 inhibited, leading to a line of highly compressed music or
1088 music which flows off the page.}
1089
1090 The incorrect duration can be found easily if bar checks are used,
1091 see @ruser{Bar and bar number checks}.
1092
1093 If you actually intend to have a series of such carry-over measures
1094 you will need to insert an invisible bar line where you want the
1095 line to break.  For details, see @ruser{Bar lines}.
1096
1097
1098 @node An extra staff appears
1099 @unnumberedsubsec An extra staff appears
1100
1101 If contexts are not created explicitly with @code{\new} or
1102 @code{\context}, they will be silently created as soon as a
1103 command is encountered which cannot be applied to an existing
1104 context.  In simple scores the automatic creation of contexts is
1105 useful, and most of the examples in the LilyPond manuals take
1106 advantage of this simplification.  But occasionally the silent
1107 creation of contexts can give rise to unexpected new staves or
1108 scores.  For example, it might be expected that the following code
1109 would cause all note heads within the following staff to be
1110 colored red, but in fact it results in two staves with the note
1111 heads remaining the default black in the lower staff.
1112
1113 @lilypond[quote,verbatim,fragment]
1114 \override Staff.NoteHead.color = #red
1115 \new Staff { a' }
1116 @end lilypond
1117
1118 This is because a @code{Staff} context does not exist when the
1119 override is processed, so one is implicitly created and the override
1120 is applied to it, but then the @code{\new Staff} command creates
1121 another, separate, staff into which the notes are placed.  The
1122 correct code to color all note heads red is
1123
1124 @lilypond[quote,verbatim]
1125 \new Staff {
1126   \override Staff.NoteHead.color = #red
1127   a'
1128 }
1129 @end lilypond
1130
1131 @node Error message Unbound variable %
1132 @unnumberedsubsec Error message Unbound variable %
1133
1134 This error message will appear at the bottom of the console
1135 output or log file together with a @qq{GUILE signalled an error @dots{}}
1136 message every time a Scheme routine is called which (invalidly)
1137 contains a @emph{LilyPond} rather than a @emph{Scheme} comment.
1138
1139 LilyPond comments begin with a percent sign, (@code{%}), and must
1140 not be used within Scheme routines.  Scheme comments begin with a
1141 semi-colon, (@code{;}).
1142
1143 @node Error message FT_Get_Glyph_Name
1144 @unnumberedsubsec Error message FT_Get_Glyph_Name
1145
1146 This error messages appears in the console output or log file if
1147 an input file contains a non-ASCII character and was not saved in
1148 UTF-8 encoding.  For details, see @ruser{Text encoding}.
1149
1150
1151 @node Warning staff affinities should only decrease
1152 @unnumberedsubsec Warning staff affinities should only decrease
1153
1154 This warning can appear if there are no staves in the printed
1155 output, for example if there are just a @code{ChordName} context
1156 and a @code{Lyrics} context as in a lead sheet.  The warning
1157 messages can be avoided by making one of the contexts behave as a
1158 staff by inserting
1159
1160 @example
1161 \override VerticalAxisGroup.staff-affinity = ##f
1162 @end example
1163
1164 @noindent
1165 at its start.  For details, see @qq{Spacing of non-staff lines} in
1166 @ruser{Flexible vertical spacing within systems}.
1167
1168
1169 @node Error message unexpected new
1170 @unnumberedsubsec Error message unexpected @code{@bs{}new}
1171
1172 A @code{\score} block must contain a @emph{single} music expression.
1173 If instead it contains several @code{\new Staff},
1174 @code{\new StaffGroup} or similar contexts introduced with @code{\new}
1175 without them being enclosed in either curly brackets,
1176 @code{@{ @dots{} @}}, or double angle brackets, @code{<< @dots{} >>},
1177 like this:
1178
1179 @example
1180 \score @{
1181   % Invalid! Generates error: syntax error, unexpected \new
1182   \new Staff @{ @dots{} @}
1183   \new Staff @{ @dots{} @}
1184 @}
1185 @end example
1186
1187 @noindent
1188 the error message will be produced.
1189
1190 To avoid the error, enclose all the @code{\new} statements in
1191 curly or double angle brackets.
1192
1193 Using curly brackets will introduce the @code{\new} statements
1194 sequentially:
1195
1196 @lilypond[quote,verbatim]
1197 \score {
1198   {
1199     \new Staff { a' a' a' a' }
1200     \new Staff { g' g' g' g' }
1201   }
1202 }
1203 @end lilypond
1204
1205 @noindent
1206 but more likely you should be using double angle brackets so the new
1207 staves are introduced in parallel, i.e. simultaneously:
1208
1209 @lilypond[quote,verbatim]
1210 \score {
1211   <<
1212     \new Staff { a' a' a' a' }
1213     \new Staff { g' g' g' g' }
1214   >>
1215 }
1216 @end lilypond
1217
1218 @node Warning this voice needs a voiceXx or shiftXx setting
1219 @unnumberedsubsec Warning this voice needs a @code{@bs{}voiceXx} or @code{@bs{}shiftXx} setting
1220
1221 If notes from two different voices with stems in the same direction
1222 occur at the same musical moment, but the voices have no
1223 voice-specific shifts specified, the warning message
1224 @samp{warning: this voice needs a \voiceXx or \shiftXx setting} will appear
1225 when compiling the LilyPond file.  This warning will appear even when
1226 the notes have no visible stems, e.g. whole notes, if the stems for
1227 shorter notes at the same pitch would be in the same direction.
1228
1229 Remember that the stem direction depends on the position of the
1230 note on the staff unless the stem direction is specified, for example
1231 by using @code{\voiceOne}, etc.  In this case the warning will appear
1232 only when the stems happen to be in the same direction, i.e. when the
1233 notes are in the same half of the staff.
1234
1235 By placing the notes in voices with stem directions and shifts
1236 specified, for example by using @code{\voiceOne}, etc., these warnings
1237 may be avoided.
1238
1239 Notes in higher numbered voices, @code{\voiceThree} etc., are
1240 automatically shifted to avoid clashing note columns.  This causes a
1241 visible shift for notes with stems, but whole notes are not visibly
1242 shifted unless an actual clash of the note heads occurs, or when the
1243 voices cross over from their natural order (when @code{\voiceThree}
1244 is higher than @code{\voiceOne}, etc.)
1245
1246 @seealso
1247 @rlearning{Explicitly instantiating voices},
1248 @rlearning{Real music example},
1249 @ruser{Single-staff polyphony},
1250 @ruser{Collision resolution}.