]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/invoking.itely
Update convert-ly bugs.
[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 * File structure::              
15 * Including LilyPond files::    
16 @end menu
17
18 @node Invoking lilypond
19 @section Invoking lilypond
20 @cindex Invoking LilyPond
21 @cindex command line options
22 @cindex options, command line
23 @cindex switches
24
25
26 The @code{lilypond} executable may be called as follows from the command line.
27
28 @example
29 lilypond [@var{option}]@dots{} @var{file}@dots{}
30 @end example
31
32
33 When invoked with a filename that has no extension, the @file{.ly}
34 extension is tried first.  To read input from stdin, use a
35 dash (@code{-}) for @var{file}.
36
37 When @file{filename.ly} is processed it will produce
38 @file{filename.tex} as output (or @file{filename.ps} for PostScript
39 output).  If @file{filename.ly} contains more than one @code{\score}
40 block, then the rest of the scores will be output in numbered files,
41 starting with @file{filename-1.tex}.  Several files can be specified;
42 they will each be processed independently.  @footnote{The status of
43 GUILE is not reset after processing a @code{.ly} file, so be careful
44 not to change any system defaults from within Scheme.}
45
46
47 @section Command line options
48
49 The following options are supported:
50
51 @table @code
52
53 @item -e,--evaluate=@var{expr}
54 Evaluate the Scheme @var{expr} before parsing any @file{.ly} files.
55 Multiple @code{-e} options may be given, they will be evaluated
56 sequentially.  
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 sets the internal program option @var{var} to the Scheme value
99 @var{val}. If @var{val} is not supplied, then @var{#t} is used. To
100 switch off an option, @code{no-} may be prefixed to @var{var}, eg.
101 @example
102 -dno-point-and-click
103 @end example
104
105 @noindent
106 is the same as
107 @example
108 -dpoint-and-click='#f'
109 @end example
110
111 @cindex point and click
112
113 Setting the @code{help} option will print a summary of the options
114 available, and exit.
115
116 @item -h,--help
117 Show a summary of usage.
118
119 @item --include, -I=@var{directory}
120 Add @var{directory} to the search path for input files.
121 @cindex file searching
122 @cindex search path
123
124 @item -i,--init=@var{file}
125 Set init file to @var{file} (default: @file{init.ly}).
126
127 @item -o,--output=@var{FILE}
128 Set the default output file to @var{FILE}.  The appropriate
129 suffix will be added (ie @code{.pdf} for pdf, @code{.tex}
130 for tex, etc).
131
132 @item --ps
133 Generate PostScript.
134
135 @item --dvi
136 Generate DVI files.  In this case, the @TeX{} backend should be
137 specified, i.e., @code{-f tex}.
138
139 @item --png
140 Generate pictures of each page, in PNG format.  This implies
141 @code{--ps}.  The resolution in DPI of the image may be set with
142 @example
143 -dresolution=110 
144 @end example
145
146 @item --pdf
147 Generate PDF.  This implies @code{--ps}.
148
149 @item --preview
150 Generate an output file containing the titles and the first system
151
152 @item --no-pages
153 Do not generate the full pages.  Useful in combination with
154 @code{--preview}.
155
156 @item -s,--safe
157 Do not trust the @code{.ly} input.
158
159 When LilyPond formatting is available through a web server, either the
160 @code{--safe} or the @code{--jail} option @b{MUST} be passed.  The
161 @code{--safe} option will prevent inline Scheme code from wreaking
162 havoc, for example
163
164 When LilyPond formatting is available through a web server, the
165 @code{--safe} @b{MUST} be passed.  This will prevent inline Scheme
166 code from wreaking havoc, for example
167
168 @quotation
169 @verbatim
170 #(system "rm -rf /")
171 {
172   c4^#(ly:export (ly:gulp-file "/etc/passwd"))
173 }
174 @end verbatim
175 @end quotation
176
177 The @code{--safe} option works by evaluating in-line Scheme
178 expressions in a special safe module.  This safe module is derived from
179 GUILE @file{safe-r5rs} module, but adds a number of functions of the
180 LilyPond API.  These functions are listed in @file{scm/@/safe@/-lily@/.scm}.
181
182 In addition, @code{--safe} disallows @code{\include} directives and
183 disables the use of backslashes in @TeX{} strings.
184
185 In @code{--safe} mode, it is not possible to import LilyPond variables
186 into Scheme.
187
188 @code{--safe} does @emph{not} detect resource overuse.  It is still
189 possible to make the program hang indefinitely, for example by feeding
190 cyclic data structures into the backend.  Therefore, if using LilyPond
191 on a publicly accessible webserver, the process should be limited in
192 both CPU and memory usage.
193
194 Note that @code{--safe} will prevent many useful LilyPond snippets from
195 being compiled.  For a softer but secure alternative you can use the
196 @code{--jail} option.
197
198
199 @item -j,--jail=@var{user},@var{group},@var{jail},@var{dir}
200 Run LilyPond in a chroot jail.
201
202 The @code{--jail} option provides a more flexible alternative to 
203 @code{--safe} when LilyPond formatting is available through a web
204 server or whenever LilyPond executes externally provided
205 sources.
206
207 The @code{--jail} option works by changing the root of LilyPond to
208 @var{jail} just before starting the actual compilation process.  The user
209 and group are then changed to match those provided, and the current
210 directory is changed to @var{dir}.  This setup guarantees that it is not
211 possible (at least in theory) to escape from the jail.  Note that for
212 @code{--jail} to work LilyPond must be run as root, which is usually
213 accomplished in a safe way using @command{sudo}.
214
215 Setting up a jail is a slightly delicate matter, as we must be sure that
216 LilyPond is able to find whatever it needs to compile the source
217 @emph{inside the jail}. A typical setup comprises the following items:
218
219 @table @asis
220 @item Setting up a separate filesystem
221 A separate filesystem should be created for LilyPond, so that it can be
222 mounted with safe options such as @code{noexec}, @code{nodev}, and
223 @code{nosuid}.  In this way, it is impossible to run executables or to
224 write directly to a device from LilyPond.  If you do not want to create a
225 separate partition, just create a file of reasonable size and use it to
226 mount a loop device.  A separate filesystem also guarantees that LilyPond
227 cannot write more space than it is allowed.
228
229 @item Setting up a separate user
230 A separate user and group (say, @samp{lily}/@samp{lily}) with low
231 privileges should be used to run LilyPond inside the jail.  There should
232 be a single directory writable by this user, which should be passed in
233 @var{dir}.
234
235 @item Preparing the jail
236 LilyPond needs to read a number of files while running.  All these files
237 are to be copied into the jail, under the same path they apper in the
238 real root filesystem.  The entire content of the LilyPond installation
239 (e.g., @file{/usr/share/lilypond})
240 should be copied.
241
242 If problems arise, the simplest way to trace them down is to run
243 LilyPond using @command{strace}, which will allow you to determine which
244 files are missing.
245
246 @item Running LilyPond
247 In a jail mounted with @code{noexec} it is impossible to execute any external
248 program.  Therefore LilyPond must be run with a backend that does not
249 require any such program.  As we already mentioned, it must be also run
250 with superuser privileges (which, of course, it will lose immediately),
251 possibly using @command{sudo}.  It is a good idea to limit the number of
252 seconds of CPU time LilyPond can use (e.g., using @command{ulimit
253 -t}), and, if your operating system supports it, the amount of memory
254 that can be allocated.
255 @end table
256
257
258 @item -v,--version
259 Show version information.
260
261 @item -V,--verbose
262 Be verbose: show full paths of all files read, and give timing
263 information.
264
265 @item -w,--warranty
266 Show the warranty with which GNU LilyPond comes. (It comes with
267 @strong{NO WARRANTY}!)
268 @end table
269
270
271 @section Environment variables
272
273
274 @cindex LANG
275 @cindex LILYPONDPREFIX
276
277 @code{Lilypond} recognizes the following environment variables:
278 @table @code
279 @item LILYPONDPREFIX
280 This specifies a directory where locale messages and
281 data files will be looked up by default.  The directory should contain
282 subdirectories called @file{ly/}, @file{ps/}, @file{tex/}, etc.
283
284 @item LANG
285 This selects the language for the warning messages.
286
287 @item LILYPOND_GC_YIELD
288 With this variable the memory footprint and performance can be
289 adjusted. It is a percentage tunes memory management behavior. With
290 higher values, the program uses more memory, with smaller values, it
291 uses more CPU time. The default value is @code{70}.
292
293 @end table
294
295
296 @node Error messages
297 @section Error messages
298
299 @cindex error messages
300 Different error messages can appear while compiling a file:
301
302 @table @emph
303 @cindex warning
304
305 @item Warning
306 Something looks suspect.  If you are requesting something out of the
307 ordinary then you will understand the message, and can ignore it.
308 However, warnings usually indicate that something is wrong with the
309 input file.
310
311 @item Error
312 Something is definitely wrong.  The current processing step (parsing,
313 interpreting, or formatting) will be finished, but the next step will
314 be skipped.
315
316 @cindex error
317 @cindex fatal error
318 @item Fatal error
319 Something is definitely wrong, and LilyPond cannot continue.  This
320 happens rarely.  The most usual cause is misinstalled fonts.
321
322 @cindex trace, Scheme
323 @cindex call trace
324 @cindex Scheme error
325 @item Scheme error
326 Errors that occur while executing Scheme code are caught by the Scheme
327 interpreter.  If running with the verbose option (@code{-V} or
328 @code{--verbose}) then a call trace of the offending
329 function call is printed.
330
331 @cindex Programming error
332 @item Programming error
333 There was some internal inconsistency.  These error messages are
334 intended to help the programmers and debuggers.  Usually, they can be
335 ignored.  Sometimes, they come in such big quantities that they obscure
336 other output.  In this case, file a bug-report.
337
338 @item Aborted (core dumped)
339 This signals a serious programming error that caused the program to
340 crash.  Such errors are considered critical.  If you stumble on one,
341 send a bug-report.
342
343
344 @end table
345
346 @cindex errors, message format
347 If warnings and errors can
348 be linked to some part of the input file, then error messages have the
349 following form
350
351 @example
352 @var{filename}:@var{lineno}:@var{columnno}: @var{message}
353 @var{offending input line}
354 @end example
355
356 A line-break is inserted in the offending line to indicate the column
357 where the error was found.  For example,
358
359 @example
360 test.ly:2:19: error: not a duration: 5:
361   @{ c'4 e'5
362              g' @}
363 @end example
364
365 These locations are LilyPond's best guess about where the warning or
366 error occured, but (by their very nature) warnings and errors occur
367 when something unexpected happens.  If you can't see an error in the
368 indicated line of your input file, try checking one or two lines
369 above the indicated position.
370
371
372 @node Updating files with convert-ly
373 @section Updating with @command{convert-ly}
374
375 The LilyPond input syntax is routinely changed to simplify it or improve
376 it in different ways.  As a side effect of this, the LilyPond interpreter
377 often is no longer compatible with older input files.  To remedy this,
378 the program @command{convert-ly} can be used to deal with most of the
379 syntax changes between LilyPond versions.
380
381 It uses @code{\version} statements in the input files to detect the
382 old version number.  In most cases, to upgrade your input file it is
383 sufficient to run@footnote{MacOS X users may execute this command
384 under the menu entry @samp{Compile > Update syntax}.}
385
386 @example
387 convert-ly -e myfile.ly
388 @end example
389
390 If there are no changes to myfile.ly and file called myfile.ly.NEW
391 is created, then myfile.ly is already updated.
392
393 @command{convert-ly} always converts up to the last syntax change handled by
394 it.  This means that the @code{\version} number left in the file is
395 usually lower than the version of @command{convert-ly} itself.
396
397 To upgrade LilyPond fragments in texinfo files, use
398
399 @example
400 convert-ly --from=... --to=... --no-version *.itely
401 @end example
402
403 To upgrade many files at once, combine @code{convert-ly} with
404 standard unix commands.  This example will upgrade all @code{.ly}
405 files in the current directory
406
407 @example
408 for f in *.ly; do convert-ly -e $f; done;
409 @end example
410
411 In general, the program is invoked as follows:
412
413 @example
414 convert-ly [@var{option}]@dots{} @var{file}@dots{}
415 @end example
416
417
418 The following options can be given:
419
420 @table @code
421 @item -e,--edit
422 Do an inline edit of the input file.  Overrides @code{--output}.
423
424 @item -f,--from=@var{from-patchlevel}
425 Set the version to convert from.  If this is not set, @command{convert-ly}
426 will guess this, on the basis of @code{\version} strings in the file.
427
428 @item -n,--no-version
429 Normally, @command{convert-ly} adds a @code{\version} indicator 
430 to the output.  Specifying this option suppresses this.  
431
432 @item -s, --show-rules
433 Show all known conversions and exit.
434
435 @item --to=@var{to-patchlevel}
436 Set the goal version of the conversion.  It defaults to the latest
437 available version.
438
439 @item -h, --help
440 Print usage help.
441 @end table
442
443
444 @refbugs
445
446 Not all language changes are handled.  Only one output option can be
447 specified.
448
449
450 @c  We might want to make this a completely new section, along with more
451 @c  info about how to upgrade old input files.  -gp
452
453 @ignore
454 Copy and paste from CVS, last updated
455 Aug 18, 2005
456
457 http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/lilypond/lily-bugs/bugs/convert-ly.txt?rev=HEAD&content-type=text/plain
458 @end ignore
459 @verbatim
460
461 There are a few things that the convert-ly cannot handle. Here's a list of limitations
462 that the community has complained about.
463
464 This bug report structure has been chosen because convert-ly has a structure that doesn't
465 allow to smoothly implement all needed changes. Thus this is just a wishlist, placed
466 here for reference.
467
468 1.6->2.0:
469  Doesn't always convert figured bass correctly, specifically things like {< >}. Mats' comment on working around this:
470    To be able to run convert-ly
471    on it, I first replaced all occurencies of '{<' to some dummy like '{#'
472    and similarly I replaced '>}' with '&}'. After the conversion, I could
473    then change back from '{ #' to '{ <' and from '& }' to '> }'.
474  Doesn't convert all text markup correctly. In the old markup syntax,
475  it was possible to group a number of markup commands together within parentheses, e.g.
476    -#'((bold italic) "string")
477    This will incorrectly be converted into
478    -\markup{{\bold italic} "string"}
479    instead of the correct
480    -\markup{\bold \italic "string"}
481 2.0->2.2:
482  Doesn't handle \partcombine
483  Doesn't do \addlyrics => \lyricsto, this breaks some scores with multiple stanzas.
484 2.0->2.4:
485  \magnify isn't changed to \fontsize.
486     - \magnify #m => \fontsize #f, where f = 6ln(m)/ln(2)
487  remove-tag isn't changed.
488     - \applymusic #(remove-tag '. . .) => \keepWithTag #'. . .
489  firstpagenumber isn't changed.
490     - firstpagenumber no => printfirstpagenumber = ##f
491  Line breaks in header strings aren't converted.
492     - \\\\  as line break in \header strings => \markup \center-align <
493       "First Line" "Second Line" >
494  Crescendo and decrescendo terminators aren't converted.
495     - \rced => \!
496     - \rc => \!
497 2.2->2.4:
498  \turnOff (used in \set Staff.VoltaBracket = \turnOff) is not properly converted.
499 2.4.2->2.5.9
500  \markup{ \center-align <{ ... }> } should be converted to:
501  \markup{ \center-align {\line { ... }} }
502  but now, \line is missing.
503 2.4->2.6
504  Special LaTeX characters such as $~$ in text are not converted to UTF8.
505
506 @end verbatim
507
508
509 @node Reporting bugs
510 @section Reporting bugs
511
512 @cindex bugs
513 @cindex reporting bugs
514
515 If you have input that results in a crash or an erroneous output, then
516 that is a bug.  We try to respond to bug-reports promptly, and fix them as
517 soon as possible.  Help us by sending a defective input file, so we can
518 reproduce the problem.  Make it small, so we can easily debug the
519 problem.  Don't forget to tell which version of LilyPond you use!  Send
520 the report to @email{bug-lilypond@@gnu.org}.
521
522 @ignore
523 @c the bug database is not up to date enough. 
524
525 When you've found a bug, have a look at our
526 @uref{http://@/lilypond@/.org/@/doc/@/v2.5/@/bugs/,bug database} to see if
527 it has already been reported.  You could also try to do a few searches
528 on the mailing list for the bug.  Sometimes the bug will have already
529 been reported and a fix or workaround is already known.
530 @end ignore
531
532 Here is an example of a good bug report:
533
534 @example
535 It seems that placement of accidentals is broken.  In the
536 following example, the accidental touches the note head.
537
538 Using Mac OSX 10.3.7, fink package lilypond-devel
539
540 \version "2.5.18"
541 \relative c''@{
542    a4 b cis d
543 @}
544 @end example
545
546 @lilypond[quote]
547 \version "2.5.18"
548 \relative c''{
549   \override Accidental #'extra-offset = #'(1.0 . 0)
550   a4 b cis d
551 }
552 @end lilypond
553
554 @node Editor support
555 @section Editor support
556
557 @cindex editors
558 @cindex vim
559 @cindex emacs
560 @cindex modes, editor
561 @cindex syntax coloring
562 @cindex coloring, syntax
563
564 There is support from different editors for LilyPond.
565
566 @table @asis
567 @item Emacs
568 Emacs has a @file{lilypond-mode}, which provides keyword
569 autocompletion, indentation, LilyPond specific parenthesis matching
570 and syntax coloring, handy compile short-cuts and reading LilyPond
571 manuals using Info.  If @file{lilypond-mode} is not installed on your
572 platform, then read the
573 @ifhtml
574 @uref{source/Documentation/topdocs/out-www/INSTALL.html,installation instructions}.
575 @end ifhtml
576 @ifnothtml
577 installation instructions.
578 @end ifnothtml
579
580 @item VIM
581
582 For @uref{http://@/www@/.vim@/.org,VIM}, a @file{vimrc} is supplied, along
583 with syntax coloring tools.  For more information, refer to 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
592 @item JEdit
593
594 The @uref{http://@/www@/.jedit@/.org@/,jEdit} editor has a LilyPond plugin.
595 This plugin includes a DVI viewer, integrated help and viewing via
596 GhostScript.  It can be installed by doing @key{Plugins > Plugin
597 Manager}, and selecting @code{LilyTool} from the @key{Install} tab.
598
599 @end table
600
601 All these editors can be made to jump into the input file to the source
602 of a symbol in the graphical output.  See @ref{Point and click}.
603
604
605 @node File structure
606 @section File structure
607
608 The major part of this manual is concerned with entering various
609 forms of music in LilyPond.  However, many music expressions are not
610 valid input on their own, for example, a @code{.ly} file containing
611 only a note
612 @example
613 c'4
614 @end example
615
616 @noindent
617 will result in a parsing error.  Instead, music should be inside other
618 expressions, which may be put in a file by themselves.  Such
619 expressions are called toplevel expressions.  This section enumerates
620 them all.
621
622 A @code{.ly} file contains any number of toplevel expressions, where a
623 toplevel expression is one of the following
624
625 @itemize @bullet
626 @item
627 An output definition, such as @code{\paper}, @code{\midi}, and
628 @code{\layout}.  Such a definition at the toplevel changes the default
629 settings for the block entered.
630
631 @item
632 A @code{\header} block.  This sets the global header block.  This
633 is the block containing the definitions for book-wide settings, like
634 composer, title, etc. 
635
636 @item
637 An @code{\addquote} statement.  See @ref{Quoting other voices}
638 for more information.
639
640 @item
641 A @code{\score} block.  This score will be collected with other
642 toplevel scores, and combined as a single @code{\book}.
643
644 This behavior can be changed by setting the variable
645 @code{toplevel-score-handler} at toplevel.  The default handler is
646 defined in the init file @file{scm/@/lily@/.scm}.
647
648 The @code{\score} must begin with music, and may contain only
649 one music block.
650
651 @item
652 A @code{\book} block logically combines multiple movements
653 (i.e., multiple @code{\score} blocks) in one document.  A number of
654 @code{\scores} creates a single output file, where all movement are
655 concatenated.
656
657 This behavior can be changed by setting the variable
658 @code{toplevel-book-handler} at toplevel.  The default handler is
659 defined in the init file @file{scm/@/lily@/.scm}.
660
661 @item
662 A compound music expression, such as
663 @example
664 @{ c'4 d' e'2 @}
665 @end example
666
667 This will add the piece in a @code{\score} and format it in a
668 single book together with all other toplevel @code{\score}s and music
669 expressions.
670  
671 This behavior can be changed by setting the variable
672 @code{toplevel-music-handler} at toplevel.  The default handler is
673 defined in the init file @file{scm/@/lily@/.scm}.
674
675 @item
676 A markup text, a verse for example
677 @example
678 \markup @{
679    2.  The first line verse two.
680 @}
681 @end example
682
683 Markup texts are rendered above, between or below the scores or music
684 expressions, wherever they appear.
685
686 @item
687 An indentifier, such as
688 @example
689 foo = @{ c4 d e d @}
690 @end example
691
692 This can be used later on in the file by entering @code{\foo}.  The
693 name of an identifier should have alphabetic characters only; no
694 numbers, underscores or dashes.
695
696 @end itemize
697
698 The following example shows three things that may be entered at
699 toplevel
700
701 @example
702 \layout @{
703   % movements are non-justified by default    
704   raggedright = ##t
705 @}
706
707 \header @{
708    title = "Do-re-mi"
709 @}
710    
711 @{ c'4 d' e2 @}
712 @end example
713
714
715 At any point in a file, any of the following lexical instructions can
716 be entered:
717
718 @itemize @bullet
719 @item @code{\version}
720 @item @code{\include}
721 @item @code{\renameinput}
722 @end itemize 
723
724
725 @node Including LilyPond files
726 @section Including LilyPond files
727
728 @cindex @code{\include}
729 @cindex including files
730
731 A large project may be split up into separate files.  To refer to another
732 file, use
733
734 @example
735 \include "otherfile.ly"
736 @end example
737
738 The line @code{\include "file.ly"} is equivalent to pasting the contents
739 of file.ly into the current file at the place where you have the
740 \include.  For example, for a large project you might write separate files
741 for each instrument part and create a ``full score'' file which brings
742 together the individual instrument files.
743
744 The initialization of LilyPond is done in a number of files that are
745 included by default when you start the program, normally transparent to the
746 user.  Run lilypond --verbose to see a list of paths and files that Lily
747 finds.
748
749 Files placed in directory @file{PATH/TO/share/lilypond/VERSION/ly/} (where
750 VERSION is in the form ``2.6.1'') are on the path and available to
751 @code{\include}.  Files in the
752 current working directory are available to \include, but a file of the same
753 name in LilyPond's installation takes precedence.  Files are
754 available to \include from directories in the search path specified as an
755 option when invoking @code{lilypond --include=DIR} which adds DIR to the search
756 path.
757
758 The @code{\include} statement can use full path information, but with the Unix
759 convention @code{"/"} rather than the DOS/Windows @code{"\"}.  For example,
760 if @file{stuff.ly} is located one directory higher than the current working
761 directory, use
762
763 @example
764 \include "../stuff.ly"
765 @end example
766