]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/invoking.itely
Minor fixes.
[lilypond.git] / Documentation / user / invoking.itely
1 @c -*- coding: latin-1; mode: texinfo; -*-
2 @node Running LilyPond
3 @chapter Running LilyPond
4
5 This chapter details the technicalities of running LilyPond.
6
7
8 @menu
9 * Invoking lilypond::
10 * Error messages::
11 * Updating files with convert-ly::
12 * Reporting bugs::
13 * Editor support::
14 @end menu
15
16 @node Invoking lilypond
17 @section Invoking lilypond
18 @cindex Invoking LilyPond
19 @cindex command line options
20 @cindex options, command line
21 @cindex switches
22
23
24 The @code{lilypond} executable may be called as follows from the command line.
25
26 @example
27 lilypond [@var{option}]@dots{} @var{file}@dots{}
28 @end example
29
30
31 When invoked with a filename that has no extension, the @file{.ly}
32 extension is tried first.  To read input from stdin, use a
33 dash (@code{-}) for @var{file}.
34
35 When @file{filename.ly} is processed it will produce
36 @file{filename.tex} as output (or @file{filename.ps} for PostScript
37 output).  If @file{filename.ly} contains more than one @code{\score}
38 block, then the rest of the scores will be output in numbered files,
39 starting with @file{filename-1.tex}.  Several files can be specified;
40 they will each be processed independently.  @footnote{The status of
41 GUILE is not reset after processing a @code{.ly} file, so be careful
42 not to change any system defaults from within Scheme.}
43
44
45 @section Command line options
46
47 The following options are supported:
48
49 @table @code
50
51 @item -e,--evaluate=@var{expr}
52 Evaluate the Scheme @var{expr} before parsing any @file{.ly} files.
53 Multiple @code{-e} options may be given, they will be evaluated
54 sequentially.  The function @code{ly:set-option} allows access to
55 some internal variables.  Use @code{-e '(ly:option-usage)'} for more
56 information.
57
58 @item -f,--format=@var{format}
59 which formats should be written.  Choices are @code{svg}, @code{ps},
60 @code{pdf}, @code{png}, @code{tex}, @code{dvi}.
61
62 @item -b,--backend=@var{format}
63 the output format to use for the back-end.  Choices are
64 @table @code
65 @item tex
66 for @TeX{} output, to be processed with La@TeX{}.  If present, the file
67 @file{file.textmetrics} is read to determine text extents.
68 @item texstr
69 dump text strings to @file{.texstr} file, which can be run through
70 (La)@TeX{}, resulting in a @code{.textmetrics} file, which contains the
71 extents of strings of text.
72 @item ps
73  for PostScript.
74 @cindex PostScript output
75
76   Postscript files include TTF, Type1 and OTF fonts.  No subsetting of
77   these fonts is done.  When using oriental character sets, this can
78   lead to huge files.  
79   
80 @item eps
81  for encapsulated PostScript.  This dumps every page (system) as a separate
82 @file{EPS} file, without fonts, and as one collated @file{EPS} file with
83 all pages (systems) including fonts.
84
85 This mode is used by default by lilypond-book.
86
87 @item svg
88  for SVG (Scalable Vector Graphics)
89 @cindex SVG (Scalable Vector Graphics)
90 @item scm
91  for a dump of the raw, internal Scheme-based drawing commands.
92 @cindex Scheme dump
93 @end table
94  
95 @cindex output format, setting
96
97 @item -d,--define-default=@var{var}=@var{val}
98 This defines an internal variable @var{var} as the Scheme value
99 @var{val}.
100
101 Supported values include:
102 @table @code
103 @item resolution
104 set PNG resolution
105 @item preview-include-book-title
106 include book-titles in preview
107 @end table
108
109 These settings are returned when calling
110 @code{(ly:get-option 'command-line-settings)} from Scheme.
111
112 @item -h,--help
113 Show a summary of usage.
114
115 @item --include, -I=@var{directory}
116 Add @var{directory} to the search path for input files.
117 @cindex file searching
118 @cindex search path
119
120 @item -i,--init=@var{file}
121 Set init file to @var{file} (default: @file{init.ly}).
122
123 @item -o,--output=@var{FILE}
124 Set the default output file to @var{FILE}.  The appropriate
125 suffix will be added (ie @code{.pdf} for pdf, @code{.tex}
126 for tex, etc).
127
128 @item --ps
129 Generate PostScript.
130
131 @item --dvi
132 Generate DVI files.  In this case, the @TeX{} backend should be
133 specified, i.e., @code{-f tex}.
134
135 @item --png
136 Generate pictures of each page, in PNG format.  This implies @code{--ps}.
137
138 @item --pdf
139 Generate PDF.  This implies @code{--ps}.
140
141 @item --preview
142 Generate an output file containing the titles and the first system
143
144 @item --no-pages
145 Do not generate the full pages.  Useful in combination with
146 @code{--preview}.
147
148 @item -s,--safe
149 Do not trust the @code{.ly} input.
150
151 When LilyPond formatting is available through a web server, either the
152 @code{--safe} or the @code{--jail} option @b{MUST} be passed.  The
153 @code{--safe} option will prevent inline Scheme code from wreaking
154 havoc, for example
155
156 When LilyPond formatting is available through a web server, the
157 @code{--safe} @b{MUST} be passed.  This will prevent inline Scheme
158 code from wreaking havoc, for example
159
160 @quotation
161 @verbatim
162 #(system "rm -rf /")
163 {
164   c4^#(ly:export (ly:gulp-file "/etc/passwd"))
165 }
166 @end verbatim
167 @end quotation
168
169 The @code{--safe} option works by evaluating in-line Scheme
170 expressions in a special safe module.  This safe module is derived from
171 GUILE @file{safe-r5rs} module, but adds a number of functions of the
172 LilyPond API.  These functions are listed in @file{scm/@/safe@/-lily@/.scm}.
173
174 In addition, @code{--safe} disallows @code{\include} directives and
175 disables the use of backslashes in @TeX{} strings.
176
177 In @code{--safe} mode, it is not possible to import LilyPond variables
178 into Scheme.
179
180 @code{--safe} does @emph{not} detect resource overuse.  It is still
181 possible to make the program hang indefinitely, for example by feeding
182 cyclic data structures into the backend.  Therefore, if using LilyPond
183 on a publicly accessible webserver, the process should be limited in
184 both CPU and memory usage.
185
186 Note that @code{--safe} will prevent many useful LilyPond snippets from
187 being compiled.  For a softer but secure alternative you can use the
188 @code{--jail} option.
189
190
191 @item -j,--jail=@var{user},@var{group},@var{jail},@var{dir}
192 Run LilyPond in a jail.
193
194 The @code{--jail} option provides a more flexible alternative to 
195 @code{--safe} when LilyPond formatting is available through a web
196 server or whenever LilyPond executes externally provided
197 sources.
198
199 The @code{--jail} option works by changing the root of LilyPond to
200 @var{jail} just before starting the actual compilation process.  The user
201 and group are then changed to match those provided, and the current
202 directory is changed to @var{dir}.  This setup guarantees that it is not
203 possible (at least in theory) to escape from the jail.  Note that for
204 @code{--jail} to work LilyPond must be run as root, which is usually
205 accomplished in a safe way using @command{sudo}.
206
207 Setting up a jail is a slightly delicate matter, as we must be sure that
208 LilyPond is able to find whatever it needs to compile the source
209 @emph{inside the jail}. A typical setup comprises the following items:
210
211 @table @asis
212 @item Setting up a separate filesystem
213 A separate filesystem should be created for LilyPond, so that it can be
214 mounted with safe options such as @code{noexec}, @code{nodev}, and
215 @code{nosuid}.  In this way, it is impossible to run executables or to
216 write directly to a device from LilyPond.  If you do not want to create a
217 separate partition, just create a file of reasonable size and use it to
218 mount a loop device.  A separate filesystem also guarantees that LilyPond
219 cannot write more space than it is allowed.
220
221 @item Setting up a separate user
222 A separate user and group (say, @samp{lily}/@samp{lily}) with low
223 privileges should be used to run LilyPond inside the jail.  There should
224 be a single directory writable by this user, which should be passed in
225 @var{dir}.
226
227 @item Preparing the jail
228 LilyPond needs to read a number of files while running.  All these files
229 are to be copied into the jail, under the same path they apper in the
230 real root filesystem.  The entire content of the LilyPond installation
231 (e.g., @file{/usr/share/lilypond})
232 should be copied.
233
234 If problems arise, the simplest way to trace them down is to run
235 LilyPond using @command{strace}, which will allow you to determine which
236 files are missing.
237
238 @item Running LilyPond
239 In a jail mounted with @code{noexec} it is impossible to execute any external
240 program.  Therefore LilyPond must be run with a backend that does not
241 require any such program.  As we already mentioned, it must be also run
242 with superuser privileges (which, of course, it will lose immediately),
243 possibly using @command{sudo}.  It is a good idea to limit the number of
244 seconds of CPU time LilyPond can use (e.g., using @command{ulimit
245 -t}), and, if your operating system supports it, the amount of memory
246 that can be allocated.
247 @end table
248
249
250 @item -v,--version
251 Show version information.
252
253 @item -V,--verbose
254 Be verbose: show full paths of all files read, and give timing
255 information.
256
257 @item -w,--warranty
258 Show the warranty with which GNU LilyPond comes. (It comes with
259 @strong{NO WARRANTY}!)
260 @end table
261
262
263 @section Environment variables
264
265 For processing both the @TeX{} and the PostScript output, the
266 appropriate environment variables must be set.  The following scripts
267 do this:
268
269 @itemize @bullet
270 @item @file{buildscripts/@/out/@/lilypond@/-profile}
271 (for SH shells)
272 @item @file{buildscripts/@/out/@/lilypond@/-login} (for C-shells)
273 @end itemize
274
275 They should normally be sourced as part of the login process.  If these
276 scripts are not run from the system wide login process, then you must
277 run them yourself.
278
279 @cindex installing LilyPond
280
281 If you use sh, bash, or a similar shell, then add the following to
282 your @file{.profile}:
283 @example
284 . @var{/the/path/to/}lilypond-profile
285 @end example
286
287 If you use csh, tcsh or a similar shell, then add the following to
288 your @file{~/.login}:
289 @example
290 source @var{/the/path/to/}lilypond-login
291 @end example
292
293 Of course, in both cases, you should substitute the proper location of
294 either script.
295
296 These scripts set the following variables:
297 @table @code
298 @item TEXMF
299 To make sure that @TeX{} and lilypond find data files (among
300 others @file{.tex}, @file{.mf}, and @file{.tfm}),
301 you have to set @code{TEXMF} to point to the lilypond data
302 file tree.  A typical setting would be
303 @example
304 @{/usr/share/lilypond/2.4.0,@{!!/usr/share/texmf@}@}
305 @end example
306
307 @end table
308
309
310 @cindex PostScript
311 @cindex TEXMF
312 @cindex printing postscript
313
314 The binary itself recognizes the following environment variables:
315 @table @code
316 @item LILYPONDPREFIX
317 This specifies a directory where locale messages and
318 data files will be looked up by default.  The directory should contain
319 subdirectories called @file{ly/}, @file{ps/}, @file{tex/}, etc.
320
321 @item LANG
322 This selects the language for the warning messages.
323 @end table
324
325 @cindex LANG
326 @cindex LILYPONDPREFIX
327
328 @node Error messages
329 @section Error messages
330
331 @cindex error messages
332 Different error messages can appear while compiling a file:
333
334 @table @emph
335 @cindex warning
336
337 @item Warning
338 Something looks suspect.  If you are requesting something out of the
339 ordinary then you will understand the message, and can ignore it.
340 However, warnings usually indicate that something is wrong with the
341 input file.
342
343 @item Error
344 Something is definitely wrong.  The current processing step (parsing,
345 interpreting, or formatting) will be finished, but the next step will
346 be skipped.
347
348 @cindex error
349 @cindex fatal error
350 @item Fatal error
351 Something is definitely wrong, and LilyPond cannot continue.  This
352 happens rarely.  The most usual cause is misinstalled fonts.
353
354 @cindex trace, Scheme
355 @cindex call trace
356 @cindex Scheme error
357 @item Scheme error
358 Errors that occur while executing Scheme code are caught by the Scheme
359 interpreter.  If running with the verbose option (@code{-V} or
360 @code{--verbose}) then a call trace of the offending
361 function call is printed.
362
363 @cindex Programming error
364 @item Programming error
365 There was some internal inconsistency.  These error messages are
366 intended to help the programmers and debuggers.  Usually, they can be
367 ignored.  Sometimes, they come in such big quantities that they obscure
368 other output.  In this case, file a bug-report.
369
370 @item Aborted (core dumped)
371 This signals a serious programming error that caused the program to
372 crash.  Such errors are considered critical.  If you stumble on one,
373 send a bug-report.
374
375
376 @end table
377
378 @cindex errors, message format
379 If warnings and errors can
380 be linked to some part of the input file, then error messages have the
381 following form
382
383 @example
384 @var{filename}:@var{lineno}:@var{columnno}: @var{message}
385 @var{offending input line}
386 @end example
387
388 A line-break is inserted in the offending line to indicate the column
389 where the error was found.  For example,
390
391 @example
392 test.ly:2:19: error: not a duration: 5:
393   @{ c'4 e'5
394              g' @}
395 @end example
396
397 These locations are LilyPond's best guess about where the warning or
398 error occured, but (by their very nature) warnings and errors occur
399 when something unexpected happens.  If you can't see an error in the
400 indicated line of your input file, try checking one or two lines
401 above the indicated position.
402
403
404 @node Updating files with convert-ly
405 @section Updating with @command{convert-ly}
406
407 The LilyPond input syntax is routinely changed to simplify it or improve
408 it in different ways.  As a side effect of this, the LilyPond interpreter
409 often is no longer compatible with older input files.  To remedy this,
410 the program @command{convert-ly} can be used to deal with most of the
411 syntax changes between LilyPond versions.
412
413 It uses @code{\version} statements in the input files to detect the old
414 version number.  In most cases, to upgrade your input file it is sufficient
415 to run
416
417 @example
418 convert-ly -e myfile.ly
419 @end example
420
421 If there are no changes to myfile.ly and file called myfile.ly.NEW
422 is created, then myfile.ly is already updated.
423
424 To upgrade LilyPond fragments in texinfo files, use
425
426 @example
427 convert-ly --from=... --to=... --no-version *.itely
428 @end example
429
430 To upgrade many files at once, combine @code{convert-ly} with
431 standard unix commands.  This example will upgrade all @code{.ly}
432 files in the current directory
433
434 @example
435 for f in *.ly; do convert-ly -e $f; done;
436 @end example
437
438 In general, the program is invoked as follows:
439
440 @example
441 convert-ly [@var{option}]@dots{} @var{file}@dots{}
442 @end example
443
444
445 The following options can be given:
446
447 @table @code
448 @item -e,--edit
449 Do an inline edit of the input file.  Overrides @code{--output}.
450
451 @item -f,--from=@var{from-patchlevel}
452 Set the version to convert from.  If this is not set, @command{convert-ly}
453 will guess this, on the basis of @code{\version} strings in the file.
454
455 @item -o,--output=@var{file}
456 Set the output file to write.  
457
458 @item -n,--no-version
459 Normally, @command{convert-ly} adds a @code{\version} indicator 
460 to the output.  Specifying this option suppresses this.  
461
462 @item -s, --show-rules
463 Show all known conversions and exit.
464
465 @item --to=@var{to-patchlevel}
466 Set the goal version of the conversion.  It defaults to the latest
467 available version.
468
469 @item -h, --help
470 Print usage help.
471 @end table
472
473 @command{convert-ly} always converts up to the last syntax change handled by
474 it.  This means that the @code{\version} number left in the file is
475 usually lower than the version of @command{convert-ly} itself.
476
477 @refbugs
478
479 Not all language changes are handled.  Only one output option can be
480 specified.
481
482
483 @c  We might want to make this a completely new section, along with more
484 @c  info about how to upgrade old input files.  -gp
485
486 @ignore
487 Copy and paste from CVS, last updated
488 Feb 14, 2005
489
490 http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/lilypond/lily-bugs/bugs/convert-ly.txt?rev=HEAD&content-type=text/plain
491 @end ignore
492 @verbatim
493
494 There are a few things that the convert-ly cannot handle.  Here's a
495 list of limitations that the community has complained about.
496
497 This bug report structure has been chosen because convert-ly has a
498 structure that doesn't allow to smoothly implement all needed changes.
499 Thus this is just a wishlist, placed here for reference.
500
501 1.6->2.0:
502  Doesn't always convert figured bass correctly, specifically things like {< >}. Mats' comment on working around this:
503    To be able to run convert-ly
504    on it, I first replaced all occurencies of '{<' to some dummy like '{#'
505    and similarly I replaced '>}' with '&}'. After the conversion, I could
506    then change back from '{ #' to '{ <' and from '& }' to '> }'.
507  Doesn't convert all text markup correctly. Only very simple cases are fixed.
508 2.0->2.2:
509  Doesn't handle \partcombine
510  Doesn't do \addlyrics => \lyricsto, this breaks some scores with multiple stanzas.
511 2.2->2.4:
512  \turnOff (used in \set Staff.VoltaBracket = \turnOff) is not properly converted.
513 2.4.2->2.5.9
514  \markup{ \center-align <{ ... }> } should be converted to:
515  \markup{ \center-align {\line { ... }} }
516  but now, \line is missing.
517 @end verbatim
518
519
520 @node Reporting bugs
521 @section Reporting bugs
522
523 @cindex bugs
524 @cindex reporting bugs
525
526 If you have input that results in a crash or an erroneous output, then
527 that is a bug.  We try to respond to bug-reports promptly, and fix them as
528 soon as possible.  Help us by sending a defective input file, so we can
529 reproduce the problem.  Make it small, so we can easily debug the
530 problem.  Don't forget to tell which version of LilyPond you use!  Send
531 the report to @email{bug-lilypond@@gnu.org}.
532
533 @ignore
534 @c the bug database is not up to date enough. 
535
536 When you've found a bug, have a look at our
537 @uref{http://@/lilypond@/.org/@/doc/@/v2.5/@/bugs/,bug database} to see if
538 it has already been reported.  You could also try to do a few searches
539 on the mailing list for the bug.  Sometimes the bug will have already
540 been reported and a fix or workaround is already known.
541 @end ignore
542
543 Here is an example of a good bug report:
544
545 @example
546 It seems that placement of accidentals is broken.  In the
547 following example, the accidental touches the note head.
548
549 Using Mac OSX 10.3.5, fink package lilypond-unstable
550
551 \version "2.5.18"
552 \relative c''@{
553    a4 b cis d
554 @}
555 @end example
556
557 @lilypond[quote]
558 \version "2.5.18"
559 \relative c''{
560   \override Accidental #'extra-offset = #'(1.0 . 0)
561   a4 b cis d
562 }
563 @end lilypond
564
565 @node Editor support
566 @section Editor support
567
568 @cindex editors
569 @cindex vim
570 @cindex emacs
571 @cindex modes, editor
572 @cindex syntax coloring
573 @cindex coloring, syntax
574
575 There is support from different editors for LilyPond.
576
577 @table @asis
578 @item Emacs
579 Emacs has a @file{lilypond-mode}, which provides keyword
580 autocompletion, indentation, LilyPond specific parenthesis matching
581 and syntax coloring, handy compile short-cuts and reading LilyPond
582 manuals using Info.  If @file{lilypond-mode} is not installed on your
583 platform, then read the
584 @ifhtml
585 @uref{source/Documentation/topdocs/out-www/INSTALL.html,installation instructions}.
586 @end ifhtml
587 @ifnothtml
588 installation instructions.
589 @end ifnothtml
590
591 @item VIM
592
593 For @uref{http://@/www@/.vim@/.org,VIM}, a @file{vimrc} is supplied, along
594 with syntax coloring tools.  For more information, refer to the
595 @ifhtml
596 @uref{source/Documentation/topdocs/out-www/INSTALL.html,installation instructions}.
597 @end ifhtml
598 @ifnothtml
599 installation instructions.
600 @end ifnothtml
601
602
603 @item JEdit
604
605 The @uref{http://@/www@/.jedit@/.org@/,jEdit} editor has a LilyPond plugin.
606 This plugin includes a DVI viewer, integrated help and viewing via
607 GhostScript.  It can be installed by doing @key{Plugins > Plugin
608 Manager}, and selecting @code{LilyTool} from the @key{Install} tab.
609
610 @end table
611
612 All these editors can be made to jump into the input file to the source
613 of a symbol in the graphical output.  See @ref{Point and click}.
614
615