Nitpick: ly:spanner-bound grob name slur -> spanner.
[lilypond.git] / Documentation / user / running.itely
blobecae5f9e82f381a727e245e1193064fd049b7ed0
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @c This file is part of lilypond-program.tely
3 @ignore
4     Translation of GIT committish: FILL-IN-HEAD-COMMITTISH
6     When revising a translation, copy the HEAD committish of the
7     version that you are working on.  See TRANSLATION for details.
8 @end ignore
10 @c \version "2.12.0"
13 @node Running LilyPond
14 @chapter Running LilyPond
16 This chapter details the technicalities of running LilyPond.
18 @menu
19 * Normal usage::
20 * Command-line usage::
21 * Error messages::
22 * Updating files with convert-ly::
23 * Reporting bugs::
24 @end menu
27 @node Normal usage
28 @section Normal usage
30 Most users run LilyPond through a GUI; see @rlearning{First steps} if
31 you have not read this already.
34 @node Command-line usage
35 @section Command-line usage
37 This section contains extra information about using LilyPond on the
38 command-line.  This may be desirable to pass extra options to the
39 program.  In addition, there are certain extra @q{helper} programs (such
40 as @code{midi2ly}) which are only available on the command-line.
42 By @q{command-line}, we mean the command line in the operating system.
43 Windows users might be more familiar with the terms @q{DOS shell} or
44 @q{command shell}; MacOS@tie{}X users might be more familiar with the terms
45 @q{terminal} or @q{console}.  They should also consult @ref{Setup
46 for MacOS X}.
48 Describing how to use this part of an operating system is outside the
49 scope of this manual; please consult other documentation on this topic
50 if you are unfamiliar with the command-line.
52 @menu
53 * Invoking lilypond::
54 * Command line options for lilypond::
55 * Environment variables::
56 @end menu
58 @node Invoking lilypond
59 @subsection Invoking @command{lilypond}
61 @cindex Invoking @command{lilypond}
62 @cindex command line options for @command{lilypond}
63 @cindex options, command line
64 @cindex switches
67 The @command{lilypond} executable may be called as follows from the command line.
69 @example
70 lilypond [@var{option}]@dots{} @var{file}@dots{}
71 @end example
74 When invoked with a filename that has no extension, the @file{.ly}
75 extension is tried first.  To read input from stdin, use a
76 dash (@code{-}) for @var{file}.
78 When @file{filename.ly} is processed it will produce @file{filename.ps}
79 and @file{filename.pdf} as output.  Several files can be specified;
80 they will each be processed independently.  @footnote{The status of
81 GUILE is not reset after processing a @code{.ly} file, so be careful
82 not to change any system defaults from within Scheme.}
84 If @file{filename.ly} contains more than one @code{\score}
85 block, then the rest of the scores will be output in numbered files,
86 starting with @file{filename-1.pdf}.  In addition, the value of
87 @code{output-suffix} will be inserted between the basename and the
88 number.  An input file containing
90 @example
91 #(define output-suffix "violin")
92 \score @{ @dots{} @}
93 #(define output-suffix "cello")
94 \score @{ @dots{} @}
95 @end example
97 @noindent
98 will output @var{base}@file{-violin.pdf} and
99 @var{base}@file{-cello-1.pdf}.
102 @node Command line options for lilypond
103 @subsection Command line options for @command{lilypond}
105 The following options are supported:
107 @table @code
109 @item -e,--evaluate=@var{expr}
110 Evaluate the Scheme @var{expr} before parsing any @file{.ly} files.
111 Multiple @code{-e} options may be given, they will be evaluated
112 sequentially.
114 The expression will be evaluated in the @code{guile-user} module, so
115 if you want to use definitions in @var{expr}, use
117 @example
118 lilypond -e '(define-public a 42)'
119 @end example
121 @noindent
122 on the command-line, and include
124 @example
125 #(use-modules (guile-user))
126 @end example
128 @noindent
129 at the top of the @code{.ly} file.
131 @item -f,--format=@var{format}
132 which formats should be written.  Choices for @code{format} are
133 @code{svg}, @code{ps}, @code{pdf}, and @code{png}.
135 Example: @code{lilypond -fpng @var{filename}.ly}
139 @item -d,--define-default=@var{var}=@var{val}
140 This sets the internal program option @var{var} to the Scheme value
141 @var{val}.  If @var{val} is not supplied, then @var{#t} is used.  To
142 switch off an option, @code{no-} may be prefixed to @var{var}, e.g.
144 @cindex point and click, command line
146 @example
147 -dno-point-and-click
148 @end example
150 @noindent
151 is the same as
152 @example
153 -dpoint-and-click='#f'
154 @end example
156 Here are a few interesting options.
158 @table @samp
159 @item help
160 Running @code{lilypond -dhelp} will print all of the @code{-d} options
161 available.
163 @item paper-size
164 This option sets the default paper-size,
165 @example
166 -dpaper-size=\"letter\"
167 @end example
169 @noindent
170 Note that the string must be enclosed in escaped quotes ( @code{\"} ).
171 @c Match " in previous line to help context-sensitive editors
173 @item safe
174 Do not trust the @code{.ly} input.
176 When LilyPond formatting is available through a web server, either the
177 @code{--safe} or the @code{--jail} option @b{MUST} be passed.  The
178 @code{--safe} option will prevent inline Scheme code from wreaking
179 havoc, for example
181 @quotation
182 @verbatim
183 #(system "rm -rf /")
185   c4^#(ly:export (ly:gulp-file "/etc/passwd"))
187 @end verbatim
188 @end quotation
190 The @code{-dsafe} option works by evaluating in-line Scheme
191 expressions in a special safe module.  This safe module is derived from
192 GUILE @file{safe-r5rs} module, but adds a number of functions of the
193 LilyPond API.  These functions are listed in @file{scm/@/safe@/-lily@/.scm}.
195 In addition, safe mode disallows @code{\include} directives and
196 disables the use of backslashes in @TeX{} strings.
198 In safe mode, it is not possible to import LilyPond variables
199 into Scheme.
201 @code{-dsafe} does @emph{not} detect resource overuse.  It is still possible to
202 make the program hang indefinitely, for example by feeding cyclic data
203 structures into the backend.  Therefore, if using LilyPond on a
204 publicly accessible webserver, the process should be limited in both
205 CPU and memory usage.
207 The safe mode will prevent many useful LilyPond snippets from being
208 compiled.  The @code{--jail} is a more secure alternative, but
209 requires more work to set up.
211 @cindex output format, setting
212 @item backend
213 the output format to use for the back-end.  Choices for @code{format} are
214 @table @code
215 @item ps
216 @cindex PostScript output
217  for PostScript.
219   Postscript files include TTF, Type1 and OTF fonts.  No subsetting of
220   these fonts is done.  When using oriental character sets, this can
221   lead to huge files.
223 @item eps
224  for encapsulated PostScript.  This dumps every page (system) as a separate
225 @file{EPS} file, without fonts, and as one collated @file{EPS} file with
226 all pages (systems) including fonts.
228 This mode is used by default by @command{lilypond-book}.
230 @item svg
231 @cindex SVG (Scalable Vector Graphics)
232  for SVG (Scalable Vector Graphics).  This dumps every page as a separate
233 @file{SVG} file, with embedded fonts.
234   You need a SVG viewer which supports embedded fonts, or a SVG
235   viewer which is able to replace the embedded fonts with OTF fonts.
236   Under UNIX, you may use @uref{http://www.inkscape.org,Inkscape}
237   (version 0.42 or later), after copying the OTF fonts from the LilyPond directory
238   (typically @file{/usr/share/lilypond/VERSION/fonts/otf/}) to @file{~/.fonts/}.
239 @item scm
240 @cindex Scheme dump
241  for a dump of the raw, internal Scheme-based drawing commands.
243 @item null
244  do not output a printed score; has the same effect as @code{-dno-print-pages}.
245 @end table
247 Example: @code{lilypond -dbackend=svg @var{filename}.ly}
249 @item preview
250 Generate an output file containing the titles and the first system
252 @item print-pages
253 Generate the full pages, the default.  @code{-dno-print-pages} is
254 useful in combination with @code{-dpreview}.
256 @end table
260 @item -h,--help
261 Show a summary of usage.
263 @item -H,--header=@var{FIELD}
264 Dump a header field to file @file{BASENAME.@var{FIELD}}.
266 @item --include, -I=@var{directory}
267 Add @var{directory} to the search path for input files.
268 @cindex file searching
269 @cindex search path
271 @item -i,--init=@var{file}
272 Set init file to @var{file} (default: @file{init.ly}).
274 @item -o,--output=@var{FILE}
275 Set the default output file to @var{FILE}.  The appropriate
276 suffix will be added (e.g. @code{.pdf} for pdf)
278 @item --ps
279 Generate PostScript.
281 @item --png
282 Generate pictures of each page, in PNG format.  This implies
283 @code{--ps}.  The resolution in DPI of the image may be set with
284 @example
285 -dresolution=110
286 @end example
288 @item --pdf
289 Generate PDF.  This implies @code{--ps}.
293 @item -j,--jail=@var{user},@var{group},@var{jail},@var{dir}
294 Run @command{lilypond} in a chroot jail.
296 The @code{--jail} option provides a more flexible alternative to
297 @code{--safe} when LilyPond formatting is available through a web
298 server or whenever LilyPond executes externally provided
299 sources.
301 The @code{--jail} option works by changing the root of @command{lilypond} to
302 @var{jail} just before starting the actual compilation process.  The user
303 and group are then changed to match those provided, and the current
304 directory is changed to @var{dir}.  This setup guarantees that it is not
305 possible (at least in theory) to escape from the jail.  Note that for
306 @code{--jail} to work @command{lilypond} must be run as root, which is usually
307 accomplished in a safe way using @command{sudo}.
309 Setting up a jail is a slightly delicate matter, as we must be sure that
310 LilyPond is able to find whatever it needs to compile the source
311 @emph{inside the jail}.  A typical setup comprises the following items:
313 @table @asis
314 @item Setting up a separate filesystem
315 A separate filesystem should be created for LilyPond, so that it can be
316 mounted with safe options such as @code{noexec}, @code{nodev}, and
317 @code{nosuid}.  In this way, it is impossible to run executables or to
318 write directly to a device from LilyPond.  If you do not want to create a
319 separate partition, just create a file of reasonable size and use it to
320 mount a loop device.  A separate filesystem also guarantees that LilyPond
321 cannot write more space than it is allowed.
323 @item Setting up a separate user
324 A separate user and group (say, @code{lily}/@code{lily}) with low
325 privileges should be used to run LilyPond inside the jail.  There should
326 be a single directory writable by this user, which should be passed in
327 @var{dir}.
329 @item Preparing the jail
330 LilyPond needs to read a number of files while running.  All these files
331 are to be copied into the jail, under the same path they appear in the
332 real root filesystem.  The entire content of the LilyPond installation
333 (e.g., @file{/usr/share/lilypond})
334 should be copied.
336 If problems arise, the simplest way to trace them down is to run
337 LilyPond using @command{strace}, which will allow you to determine which
338 files are missing.
340 @item Running LilyPond
341 In a jail mounted with @code{noexec} it is impossible to execute any external
342 program.  Therefore LilyPond must be run with a backend that does not
343 require any such program.  As we already mentioned, it must be also run
344 with superuser privileges (which, of course, it will lose immediately),
345 possibly using @command{sudo}.  It is a good idea to limit the number of
346 seconds of CPU time LilyPond can use (e.g., using @command{ulimit
347 -t}), and, if your operating system supports it, the amount of memory
348 that can be allocated.
349 @end table
352 @item -v,--version
353 Show version information.
355 @item -V,--verbose
356 Be verbose: show full paths of all files read, and give timing
357 information.
359 @item -w,--warranty
360 Show the warranty with which GNU LilyPond comes. (It comes with
361 @strong{NO WARRANTY}!)
362 @end table
364 @node Environment variables
365 @subsection Environment variables
368 @cindex LANG
369 @cindex LILYPOND_DATADIR
371 @command{lilypond} recognizes the following environment variables:
372 @table @code
373 @item LILYPOND_DATADIR
374 This specifies a directory where locale messages and
375 data files will be looked up by default.  The directory should contain
376 subdirectories called @file{ly/}, @file{ps/}, @file{tex/}, etc.
378 @item LANG
379 This selects the language for the warning messages.
381 @item LILYPOND_GC_YIELD
382 With this variable the memory footprint and performance can be
383 adjusted.  It is a percentage tunes memory management behavior.  With
384 higher values, the program uses more memory, with smaller values, it
385 uses more CPU time.  The default value is @code{70}.
387 @end table
390 @node Error messages
391 @section Error messages
393 @cindex error messages
394 Different error messages can appear while compiling a file:
396 @table @emph
398 @item Warning
399 @cindex warning
400 Something looks suspect.  If you are requesting something out of the
401 ordinary then you will understand the message, and can ignore it.
402 However, warnings usually indicate that something is wrong with the
403 input file.
405 @item Error
406 Something is definitely wrong.  The current processing step (parsing,
407 interpreting, or formatting) will be finished, but the next step will
408 be skipped.
410 @item Fatal error
411 @cindex error
412 @cindex fatal error
413 Something is definitely wrong, and LilyPond cannot continue.  This
414 happens rarely.  The most usual cause is misinstalled fonts.
416 @item Scheme error
417 @cindex trace, Scheme
418 @cindex call trace
419 @cindex Scheme error
420 Errors that occur while executing Scheme code are caught by the Scheme
421 interpreter.  If running with the verbose option (@code{-V} or
422 @code{--verbose}) then a call trace of the offending
423 function call is printed.
425 @item Programming error
426 @cindex Programming error
427 There was some internal inconsistency.  These error messages are
428 intended to help the programmers and debuggers.  Usually, they can be
429 ignored.  Sometimes, they come in such big quantities that they obscure
430 other output.
432 @item Aborted (core dumped)
433 This signals a serious programming error that caused the program to
434 crash.  Such errors are considered critical.  If you stumble on one,
435 send a bug-report.
436 @end table
438 @cindex errors, message format
439 If warnings and errors can
440 be linked to some part of the input file, then error messages have the
441 following form
443 @example
444 @var{filename}:@var{lineno}:@var{columnno}: @var{message}
445 @var{offending input line}
446 @end example
448 A line-break is inserted in the offending line to indicate the column
449 where the error was found.  For example,
451 @example
452 test.ly:2:19: error: not a duration: 5
453   @{ c'4 e'
454            5 g' @}
455 @end example
457 These locations are LilyPond's best guess about where the warning or
458 error occurred, but (by their very nature) warnings and errors occur
459 when something unexpected happens.  If you can't see an error in the
460 indicated line of your input file, try checking one or two lines
461 above the indicated position.
464 @node Updating files with convert-ly
465 @section Updating files with @command{convert-ly}
467 @cindex Updating a LilyPond file
468 @cindex convert-ly
470 The LilyPond input syntax is routinely changed to simplify it or improve
471 it in different ways.  As a side effect of this, the LilyPond interpreter
472 often is no longer compatible with older input files.  To remedy this,
473 the program @command{convert-ly} can be used to deal with most of the
474 syntax changes between LilyPond versions.
476 It uses @code{\version} statements in the input files to detect the
477 old version number.  In most cases, to upgrade your input file it is
478 sufficient to run
480 @example
481 convert-ly -e myfile.ly
482 @end example
484 @noindent
485 MacOS@tie{}X users may execute this command under the menu entry
486 @code{Compile > Update syntax}.
488 If there are no changes to myfile.ly and file called myfile.ly.NEW
489 is created, then myfile.ly is already updated.
491 @menu
492 * Command line options for convert-ly::
493 * Problems with convert-ly::
494 @end menu
496 @node Command line options for convert-ly
497 @subsection Command line options for @command{convert-ly}
499 @command{convert-ly} always converts up to the last syntax change handled by
500 it.  This means that the @code{\version} number left in the file is
501 usually lower than the version of @command{convert-ly} itself.
503 To upgrade LilyPond fragments in texinfo files, use
505 @example
506 convert-ly --from=... --to=... --no-version *.itely
507 @end example
509 To see the changes in the LilyPond syntax between two versions, use
511 @example
512 convert-ly --from=... --to=... -s
513 @end example
515 To upgrade many files at once, combine @code{convert-ly} with
516 standard UNIX commands.  This example will upgrade all @code{.ly}
517 files in the current directory
519 @example
520 for f in *.ly; do convert-ly -e $f; done;
521 @end example
523 In general, the program is invoked as follows:
525 @example
526 convert-ly [@var{option}]@dots{} @var{file}@dots{}
527 @end example
530 The following options can be given:
532 @table @code
533 @item -e,--edit
534 Do an inline edit of the input file.  Overrides @code{--output}.
536 @item -f,--from=@var{from-patchlevel}
537 Set the version to convert from.  If this is not set, @command{convert-ly}
538 will guess this, on the basis of @code{\version} strings in the file.
540 @item -n,--no-version
541 Normally, @command{convert-ly} adds a @code{\version} indicator
542 to the output.  Specifying this option suppresses this.
544 @item -s, --show-rules
545 Show all known conversions and exit.
547 @item --to=@var{to-patchlevel}
548 Set the goal version of the conversion.  It defaults to the latest
549 available version.
551 @item -h, --help
552 Print usage help.
553 @end table
556 @node Problems with convert-ly
557 @subsection Problems with @code{convert-ly}
559 Not all language changes are handled.  Only one output option can be
560 specified.  Automatically updating scheme and LilyPond scheme
561 interfaces is quite unlikely; be prepared to tweak scheme code
562 manually.
564 @verbatim
565 There are a few things that the convert-ly cannot handle.  Here's a list
566 of limitations that the community has complained about.
568 This bug report structure has been chosen because convert-ly has a
569 structure that doesn't allow to smoothly implement all needed changes.
570 Thus this is just a wishlist, placed here for reference.
572 1.6->2.0:
573  Doesn't always convert figured bass correctly, specifically things like {<
574 >}.  Mats' comment on working around this:
575    To be able to run convert-ly
576    on it, I first replaced all occurrences of '{<' to some dummy like '{#'
577    and similarly I replaced '>}' with '&}'.  After the conversion, I could
578    then change back from '{ #' to '{ <' and from '& }' to '> }'.
579  Doesn't convert all text markup correctly.  In the old markup syntax,
580  it was possible to group a number of markup commands together within
581 parentheses, e.g.
582    -#'((bold italic) "string")
583    This will incorrectly be converted into
584    -\markup{{\bold italic} "string"}
585    instead of the correct
586    -\markup{\bold \italic "string"}
587 2.0->2.2:
588  Doesn't handle \partcombine
589  Doesn't do \addlyrics => \lyricsto, this breaks some scores with multiple
590 stanzas.
591 2.0->2.4:
592  \magnify isn't changed to \fontsize.
593     - \magnify #m => \fontsize #f, where f = 6ln(m)/ln(2)
594  remove-tag isn't changed.
595     - \applyMusic #(remove-tag '. . .) => \keepWithTag #'. . .
596  first-page-number isn't changed.
597     - first-page-number no => print-first-page-number = ##f
598  Line breaks in header strings aren't converted.
599     - \\\\  as line break in \header strings => \markup \center-align <
600       "First Line" "Second Line" >
601  Crescendo and decrescendo terminators aren't converted.
602     - \rced => \!
603     - \rc => \!
604 2.2->2.4:
605  \turnOff (used in \set Staff.VoltaBracket = \turnOff) is not properly
606 converted.
607 2.4.2->2.5.9
608  \markup{ \center-align <{ ... }> } should be converted to:
609  \markup{ \center-align {\line { ... }} }
610  but now, \line is missing.
611 2.4->2.6
612  Special LaTeX characters such as $~$ in text are not converted to UTF8.
614  \score{} must now begin with a music expression.  Anything else
615  (particularly \header{}) must come after the music.
616 @end verbatim
619 @node Reporting bugs
620 @section Reporting bugs
622 @cindex bugs
623 @cindex reporting bugs
625 If you have input that results in a crash or an erroneous output, then
626 that is a bug.  There is a list of current bugs on our Google bug tracker,
628 @uref{http://code.google.com/p/lilypond/issues/list}
630 If you have discovered a bug which is not listed, please report the
631 bug by following the directions on
633 @uref{http://lilypond.org/web/devel/participating/bugs}
635 Please construct and submit minimal examples of bugs in reports.  We do not
636 have the resources to investigate reports which are not as small as possible.