]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/running.itely
use -d options for --preview and --no-pages.
[lilypond.git] / Documentation / user / running.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @c This file is part of lilypond.tely
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.  See TRANSLATION for details.
8 @end ignore
9
10
11 @node Running LilyPond
12 @chapter Running LilyPond
13
14 This chapter details the technicalities of running LilyPond.
15
16 Some of these commands are run from the command-line.  By
17 @q{command-line}, we mean the command
18 line in the operating system.  Windows users
19 might be more familiar with the terms @q{DOS shell} or
20 @q{command shell}; OSX users might be more familiar with the
21 terms @q{terminal} or @q{console}.  OSX users should also
22 consult @ref{Notes for the MacOS X app}.
23
24 Describing how to use
25 this part of an operating system is outside the scope of this
26 manual; please consult other documentation on this topic if
27 you are unfamiliar with the command-line.
28
29 @menu
30 * Invoking lilypond::           
31 * Notes for the MacOS X app::   
32 * Updating files with convert-ly::  
33 * Reporting bugs::              
34 * Error messages::              
35 * Editor support::              
36 * Point and click::             
37 @end menu
38
39 @node Invoking lilypond
40 @section Invoking lilypond
41 @cindex Invoking LilyPond
42 @cindex command line options
43 @cindex options, command line
44 @cindex switches
45
46
47 The @code{lilypond} executable may be called as follows from the command line.
48
49 @example
50 lilypond [@var{option}]@dots{} @var{file}@dots{}
51 @end example
52
53
54 When invoked with a filename that has no extension, the @file{.ly}
55 extension is tried first.  To read input from stdin, use a
56 dash (@code{-}) for @var{file}.
57
58 When @file{filename.ly} is processed it will produce
59 @file{filename.tex} as output (or @file{filename.ps} for PostScript
60 output).  If @file{filename.ly} contains more than one @code{\score}
61 block, then the rest of the scores will be output in numbered files,
62 starting with @file{filename-1.tex}.  Several files can be specified;
63 they will each be processed independently.  @footnote{The status of
64 GUILE is not reset after processing a @code{.ly} file, so be careful
65 not to change any system defaults from within Scheme.}
66
67
68 @subsection Command line options
69
70 The following options are supported:
71
72 @table @code
73
74 @item -e,--evaluate=@var{expr}
75 Evaluate the Scheme @var{expr} before parsing any @file{.ly} files.
76 Multiple @code{-e} options may be given, they will be evaluated
77 sequentially.
78
79 The expression will be evaluated in the @code{guile-user} module, so
80 if you want to use definitions in @var{expr}, use
81
82 @example
83 lilypond -e '(define-public a 42)'
84 @end example
85
86 @noindent
87 on the command-line, and include
88
89 @example
90 #(use-modules (guile-user))
91 @end example
92
93 @noindent
94 at the top of the @code{.ly} file.
95
96 @item -f,--format=@var{format}
97 which formats should be written.  Choices for @code{format} are
98 @code{svg}, @code{ps}, @code{pdf}, @code{png}, @code{tex}, @code{dvi}.
99
100 Example: @code{lilypond -fpng filename.ly}
101
102
103
104 @item -d,--define-default=@var{var}=@var{val}
105 This sets the internal program option @var{var} to the Scheme value
106 @var{val}. If @var{val} is not supplied, then @var{#t} is used. To
107 switch off an option, @code{no-} may be prefixed to @var{var}, e.g.
108
109 @cindex point and click, command line
110
111 @example
112 -dno-point-and-click
113 @end example
114
115 @noindent
116 is the same as
117 @example
118 -dpoint-and-click='#f'
119 @end example
120
121 Here are a few interesting options.
122
123 @table @samp
124 @item help
125 Running @code{lilypond -dhelp} will print all of the @code{-d} options
126 available.
127
128 @item paper-size
129 This option sets the default paper-size, 
130 @example
131 -dpaper-size=\"letter\"
132 @end example
133
134 @noindent
135 Note that the string must be enclosed in escaped quotes ( @code{\"} ).
136
137
138 @item safe
139 Do not trust the @code{.ly} input.
140
141 When LilyPond formatting is available through a web server, either the
142 @code{--safe} or the @code{--jail} option @b{MUST} be passed.  The
143 @code{--safe} option will prevent inline Scheme code from wreaking
144 havoc, for example
145
146 @quotation
147 @verbatim
148 #(system "rm -rf /")
149 {
150   c4^#(ly:export (ly:gulp-file "/etc/passwd"))
151 }
152 @end verbatim
153 @end quotation
154
155 The @code{-dsafe} option works by evaluating in-line Scheme
156 expressions in a special safe module.  This safe module is derived from
157 GUILE @file{safe-r5rs} module, but adds a number of functions of the
158 LilyPond API.  These functions are listed in @file{scm/@/safe@/-lily@/.scm}.
159
160 In addition, safe mode disallows @code{\include} directives and
161 disables the use of backslashes in @TeX{} strings.
162
163 In safe mode, it is not possible to import LilyPond variables
164 into Scheme.
165
166 safe does @emph{not} detect resource overuse.  It is still possible to
167 make the program hang indefinitely, for example by feeding cyclic data
168 structures into the backend.  Therefore, if using LilyPond on a
169 publicly accessible webserver, the process should be limited in both
170 CPU and memory usage.
171
172 The safe mode will prevent many useful LilyPond snippets from being
173 compiled.  The @code{--jail} is a more secure alternative, but
174 requires more work to set up.
175
176 @item backend
177 the output format to use for the back-end.  Choices for @code{format} are
178 @table @code
179 @item tex
180 for @TeX{} output, to be processed with La@TeX{}.  If present, the file
181 @file{file.textmetrics} is read to determine text extents.
182 @item texstr
183 dump text strings to @file{.texstr} file, which can be run through
184 (La)@TeX{}, resulting in a @code{.textmetrics} file, which contains the
185 extents of strings of text.  @strong{Warning:} this functionality is
186 currently missing due to heavy restructuring of the source code.
187 @item ps
188  for PostScript.
189 @cindex PostScript output
190
191   Postscript files include TTF, Type1 and OTF fonts.  No subsetting of
192   these fonts is done.  When using oriental character sets, this can
193   lead to huge files.
194
195 @item eps
196  for encapsulated PostScript.  This dumps every page (system) as a separate
197 @file{EPS} file, without fonts, and as one collated @file{EPS} file with
198 all pages (systems) including fonts.
199
200 This mode is used by default by lilypond-book.
201
202 @item svg
203  for SVG (Scalable Vector Graphics).  This dumps every page as a separate
204 @file{SVG} file, with embedded fonts.
205 @cindex SVG (Scalable Vector Graphics)
206   You need a SVG viewer which supports embedded fonts, or a SVG
207   viewer which is able to replace the embedded fonts with OTF fonts.
208   Under Unix, you may use @uref{http://www.inkscape.org,Inkscape}
209   (version 0.42 or later), after copying the OTF fonts in directory
210   @file{PATH/TO/share/lilypond/VERSION/fonts/otf/} to @file{~/.fonts/}.
211 @item scm
212  for a dump of the raw, internal Scheme-based drawing commands.
213 @cindex Scheme dump
214 @end table
215
216 Example: @code{lilypond -dbackend=svg filename.ly}
217
218 @cindex output format, setting
219
220 @item preview
221 Generate an output file containing the titles and the first system
222
223 @item print-pages
224 Generate the full pages, the default.  @code{-dno-print-pages} is
225 useful in combination with @code{-dpreview}.
226
227 @end table
228
229
230
231 @item -h,--help
232 Show a summary of usage.
233
234 @item -H,--header=FIELD
235 Dump a header field to file BASENAME.FIELD
236
237 @item --include, -I=@var{directory}
238 Add @var{directory} to the search path for input files.
239 @cindex file searching
240 @cindex search path
241
242 @item -i,--init=@var{file}
243 Set init file to @var{file} (default: @file{init.ly}).
244
245 @item -o,--output=@var{FILE}
246 Set the default output file to @var{FILE}.  The appropriate
247 suffix will be added (ie @code{.pdf} for pdf, @code{.tex}
248 for tex, etc).
249
250 @item --ps
251 Generate PostScript.
252
253 @item --dvi
254 Generate DVI files.  In this case, the @TeX{} backend should be
255 specified, i.e., @code{-b tex}.
256
257 @item --png
258 Generate pictures of each page, in PNG format.  This implies
259 @code{--ps}.  The resolution in DPI of the image may be set with
260 @example
261 -dresolution=110
262 @end example
263
264 @item --pdf
265 Generate PDF.  This implies @code{--ps}.
266
267
268
269 @item -j,--jail=@var{user},@var{group},@var{jail},@var{dir}
270 Run LilyPond in a chroot jail.
271
272 The @code{--jail} option provides a more flexible alternative to
273 @code{--safe} when LilyPond formatting is available through a web
274 server or whenever LilyPond executes externally provided
275 sources.
276
277 The @code{--jail} option works by changing the root of LilyPond to
278 @var{jail} just before starting the actual compilation process.  The user
279 and group are then changed to match those provided, and the current
280 directory is changed to @var{dir}.  This setup guarantees that it is not
281 possible (at least in theory) to escape from the jail.  Note that for
282 @code{--jail} to work LilyPond must be run as root, which is usually
283 accomplished in a safe way using @command{sudo}.
284
285 Setting up a jail is a slightly delicate matter, as we must be sure that
286 LilyPond is able to find whatever it needs to compile the source
287 @emph{inside the jail}. A typical setup comprises the following items:
288
289 @table @asis
290 @item Setting up a separate filesystem
291 A separate filesystem should be created for LilyPond, so that it can be
292 mounted with safe options such as @code{noexec}, @code{nodev}, and
293 @code{nosuid}.  In this way, it is impossible to run executables or to
294 write directly to a device from LilyPond.  If you do not want to create a
295 separate partition, just create a file of reasonable size and use it to
296 mount a loop device.  A separate filesystem also guarantees that LilyPond
297 cannot write more space than it is allowed.
298
299 @item Setting up a separate user
300 A separate user and group (say, @samp{lily}/@samp{lily}) with low
301 privileges should be used to run LilyPond inside the jail.  There should
302 be a single directory writable by this user, which should be passed in
303 @var{dir}.
304
305 @item Preparing the jail
306 LilyPond needs to read a number of files while running.  All these files
307 are to be copied into the jail, under the same path they appear in the
308 real root filesystem.  The entire content of the LilyPond installation
309 (e.g., @file{/usr/share/lilypond})
310 should be copied.
311
312 If problems arise, the simplest way to trace them down is to run
313 LilyPond using @command{strace}, which will allow you to determine which
314 files are missing.
315
316 @item Running LilyPond
317 In a jail mounted with @code{noexec} it is impossible to execute any external
318 program.  Therefore LilyPond must be run with a backend that does not
319 require any such program.  As we already mentioned, it must be also run
320 with superuser privileges (which, of course, it will lose immediately),
321 possibly using @command{sudo}.  It is a good idea to limit the number of
322 seconds of CPU time LilyPond can use (e.g., using @command{ulimit
323 -t}), and, if your operating system supports it, the amount of memory
324 that can be allocated.
325 @end table
326
327
328 @item -v,--version
329 Show version information.
330
331 @item -V,--verbose
332 Be verbose: show full paths of all files read, and give timing
333 information.
334
335 @item -w,--warranty
336 Show the warranty with which GNU LilyPond comes. (It comes with
337 @strong{NO WARRANTY}!)
338 @end table
339
340
341 @subsection Environment variables
342
343
344 @cindex LANG
345 @cindex LILYPOND_DATADIR
346
347 @code{Lilypond} recognizes the following environment variables:
348 @table @code
349 @item LILYPOND_DATADIR
350 This specifies a directory where locale messages and
351 data files will be looked up by default.  The directory should contain
352 subdirectories called @file{ly/}, @file{ps/}, @file{tex/}, etc.
353
354 @item LANG
355 This selects the language for the warning messages.
356
357 @item LILYPOND_GC_YIELD
358 With this variable the memory footprint and performance can be
359 adjusted. It is a percentage tunes memory management behavior. With
360 higher values, the program uses more memory, with smaller values, it
361 uses more CPU time. The default value is @code{70}.
362
363 @end table
364
365
366 @node Notes for the MacOS X app
367 @section Notes for the MacOS X app
368
369 The scripts (such as lilypond-book, convert-ly, abc2ly, and even
370 lilypond itself) are also
371 included inside MacOS X .app. They can be run from the command line by
372 invoking them directly, e.g.
373
374 @example
375 @var{path/to}/LilyPond.app/Contents/Resources/bin/lilypond
376 @end example
377
378 @noindent
379 The same is true of the other scripts in that directory, including
380 lilypond-book, convert-ly, abc2ly, etc.
381
382 Alternatively, you may create scripts which add the path
383 automatically.  Create a directory to store these scripts,
384
385 @example
386 mkdir -p ~/bin
387 cd ~/bin
388 @end example
389
390 Create a file called @code{lilypond} which contains
391
392 @example
393 exec @var{path/to}/LilyPond.app/Contents/Resources/bin/lilypond "$@@"
394 @end example
395
396 Create similar files @code{lilypond-book}, @code{convert-ly}, and
397 any other helper programs you use (@code{abc2ly}, @code{midi2ly},
398 etc).  Simply replace the @code{bin/lilypond} with
399 @code{bin/convert-ly} (or other program name) in the above file.
400
401 Make the file executable,
402
403 @example
404 chmod u+x lilypond
405 @end example
406
407 Now, add this directory to your path.  Modify (or create)
408 a file called @code{.profile} in your home directory such that it contains
409
410 @example
411 export PATH=$PATH:~/bin
412 @end example
413
414 @noindent
415 This file should end with a blank line.
416
417 Note that @var{path/to} will generally be @code{/Applications/}.
418
419
420 @node Updating files with convert-ly
421 @section Updating with @command{convert-ly}
422
423 @cindex Updating a LilyPond file
424 @funindex convert-ly
425
426 The LilyPond input syntax is routinely changed to simplify it or improve
427 it in different ways.  As a side effect of this, the LilyPond interpreter
428 often is no longer compatible with older input files.  To remedy this,
429 the program @command{convert-ly} can be used to deal with most of the
430 syntax changes between LilyPond versions.
431
432 It uses @code{\version} statements in the input files to detect the
433 old version number.  In most cases, to upgrade your input file it is
434 sufficient to run@footnote{MacOS X users may execute this command
435 under the menu entry @samp{Compile > Update syntax}.}
436
437 @example
438 convert-ly -e myfile.ly
439 @end example
440
441 If there are no changes to myfile.ly and file called myfile.ly.NEW
442 is created, then myfile.ly is already updated.
443
444 @command{convert-ly} always converts up to the last syntax change handled by
445 it.  This means that the @code{\version} number left in the file is
446 usually lower than the version of @command{convert-ly} itself.
447
448 To upgrade LilyPond fragments in texinfo files, use
449
450 @example
451 convert-ly --from=... --to=... --no-version *.itely
452 @end example
453
454 To upgrade many files at once, combine @code{convert-ly} with
455 standard unix commands.  This example will upgrade all @code{.ly}
456 files in the current directory
457
458 @example
459 for f in *.ly; do convert-ly -e $f; done;
460 @end example
461
462 In general, the program is invoked as follows:
463
464 @example
465 convert-ly [@var{option}]@dots{} @var{file}@dots{}
466 @end example
467
468
469 The following options can be given:
470
471 @table @code
472 @item -e,--edit
473 Do an inline edit of the input file.  Overrides @code{--output}.
474
475 @item -f,--from=@var{from-patchlevel}
476 Set the version to convert from.  If this is not set, @command{convert-ly}
477 will guess this, on the basis of @code{\version} strings in the file.
478
479 @item -n,--no-version
480 Normally, @command{convert-ly} adds a @code{\version} indicator
481 to the output.  Specifying this option suppresses this.
482
483 @item -s, --show-rules
484 Show all known conversions and exit.
485
486 @item --to=@var{to-patchlevel}
487 Set the goal version of the conversion.  It defaults to the latest
488 available version.
489
490 @item -h, --help
491 Print usage help.
492 @end table
493
494
495 @refbugs
496
497 Not all language changes are handled.  Only one output option can be
498 specified.  Automatically updating scheme and lilypond scheme
499 interfaces is quite unlikely; be prepared to tweak scheme code
500 manually.
501
502
503 @c  We might want to make this a completely new section, along with more
504 @c  info about how to upgrade old input files.  -gp
505
506 @ignore
507 Copy and paste from CVS, last updated
508 Aug 18, 2005
509
510 http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/lilypond/lily-bugs/bugs/
511 convert-ly.txt?rev=HEAD&content-type=text/plain
512
513 NEW: not exactly copied; this list has been modified.  Since we're
514 changing the bug system, it doesn't make sense to copy from
515 the bug CVS any more.  I'll figure out something else.  -gp
516 @end ignore
517 @verbatim
518
519 There are a few things that the convert-ly cannot handle. Here's a list of
520 limitations
521 that the community has complained about.
522
523 This bug report structure has been chosen because convert-ly has a structure
524 that doesn't
525 allow to smoothly implement all needed changes. Thus this is just a wishlist,
526 placed
527 here for reference.
528
529 1.6->2.0:
530  Doesn't always convert figured bass correctly, specifically things like {<
531 >}. Mats' comment on working around this:
532    To be able to run convert-ly
533    on it, I first replaced all occurencies of '{<' to some dummy like '{#'
534    and similarly I replaced '>}' with '&}'. After the conversion, I could
535    then change back from '{ #' to '{ <' and from '& }' to '> }'.
536  Doesn't convert all text markup correctly. In the old markup syntax,
537  it was possible to group a number of markup commands together within
538 parentheses, e.g.
539    -#'((bold italic) "string")
540    This will incorrectly be converted into
541    -\markup{{\bold italic} "string"}
542    instead of the correct
543    -\markup{\bold \italic "string"}
544 2.0->2.2:
545  Doesn't handle \partcombine
546  Doesn't do \addlyrics => \lyricsto, this breaks some scores with multiple
547 stanzas.
548 2.0->2.4:
549  \magnify isn't changed to \fontsize.
550     - \magnify #m => \fontsize #f, where f = 6ln(m)/ln(2)
551  remove-tag isn't changed.
552     - \applyMusic #(remove-tag '. . .) => \keepWithTag #'. . .
553  first-page-number isn't changed.
554     - first-page-number no => print-first-page-number = ##f
555  Line breaks in header strings aren't converted.
556     - \\\\  as line break in \header strings => \markup \center-align <
557       "First Line" "Second Line" >
558  Crescendo and decrescendo terminators aren't converted.
559     - \rced => \!
560     - \rc => \!
561 2.2->2.4:
562  \turnOff (used in \set Staff.VoltaBracket = \turnOff) is not properly
563 converted.
564 2.4.2->2.5.9
565  \markup{ \center-align <{ ... }> } should be converted to:
566  \markup{ \center-align {\line { ... }} }
567  but now, \line is missing.
568 2.4->2.6
569  Special LaTeX characters such as $~$ in text are not converted to UTF8.
570 2.8
571  \score{} must now begin with a music expression.  Anything else
572  (particularly \header{}) must come after the music.
573 @end verbatim
574
575
576 @node Reporting bugs
577 @section Reporting bugs
578
579 @cindex bugs
580 @cindex reporting bugs
581
582 If you have input that results in a crash or an erroneous output, then
583 that is a bug. There is a list of current bugs on our google bug tracker,
584
585 @uref{http://code.google.com/p/lilypond/issues/list}
586
587 If you have discovered a bug which is not listed, please report the
588 bug by following the directions on
589
590 @uref{http://lilypond.org/web/devel/participating/bugs}
591
592 Please construct submit @ref{Minimal examples} of bug reports.  We do not
593 have the resources to investigate reports which are not as small as possible.
594
595
596 @node Error messages
597 @section Error messages
598
599 @cindex error messages
600 Different error messages can appear while compiling a file:
601
602 @table @emph
603 @cindex warning
604
605 @item Warning
606 Something looks suspect.  If you are requesting something out of the
607 ordinary then you will understand the message, and can ignore it.
608 However, warnings usually indicate that something is wrong with the
609 input file.
610
611 @item Error
612 Something is definitely wrong.  The current processing step (parsing,
613 interpreting, or formatting) will be finished, but the next step will
614 be skipped.
615
616 @cindex error
617 @cindex fatal error
618 @item Fatal error
619 Something is definitely wrong, and LilyPond cannot continue.  This
620 happens rarely.  The most usual cause is misinstalled fonts.
621
622 @cindex trace, Scheme
623 @cindex call trace
624 @cindex Scheme error
625 @item Scheme error
626 Errors that occur while executing Scheme code are caught by the Scheme
627 interpreter.  If running with the verbose option (@code{-V} or
628 @code{--verbose}) then a call trace of the offending
629 function call is printed.
630
631 @cindex Programming error
632 @item Programming error
633 There was some internal inconsistency.  These error messages are
634 intended to help the programmers and debuggers.  Usually, they can be
635 ignored.  Sometimes, they come in such big quantities that they obscure
636 other output.  In this case, file a bug-report.
637
638 @item Aborted (core dumped)
639 This signals a serious programming error that caused the program to
640 crash.  Such errors are considered critical.  If you stumble on one,
641 send a bug-report.
642
643
644 @end table
645
646 @cindex errors, message format
647 If warnings and errors can
648 be linked to some part of the input file, then error messages have the
649 following form
650
651 @example
652 @var{filename}:@var{lineno}:@var{columnno}: @var{message}
653 @var{offending input line}
654 @end example
655
656 A line-break is inserted in the offending line to indicate the column
657 where the error was found.  For example,
658
659 @example
660 test.ly:2:19: error: not a duration: 5:
661   @{ c'4 e'5
662              g' @}
663 @end example
664
665 These locations are LilyPond's best guess about where the warning or
666 error occurred, but (by their very nature) warnings and errors occur
667 when something unexpected happens.  If you can't see an error in the
668 indicated line of your input file, try checking one or two lines
669 above the indicated position.
670
671
672 @node Editor support
673 @section Editor support
674
675 @cindex editors
676 @cindex vim
677 @cindex emacs
678 @cindex modes, editor
679 @cindex syntax coloring
680 @cindex coloring, syntax
681
682 There is support from different editors for LilyPond.
683
684 @table @asis
685 @item Emacs
686 Emacs has a @file{lilypond-mode}, which provides keyword
687 autocompletion, indentation, LilyPond specific parenthesis matching
688 and syntax coloring, handy compile short-cuts and reading LilyPond
689 manuals using Info.  If @file{lilypond-mode} is not installed on your
690 platform, then read the
691 @ifhtml
692 @uref{source/Documentation/topdocs/INSTALL.html,installation instructions}.
693 @end ifhtml
694 @ifnothtml
695 installation instructions.
696 @end ifnothtml
697
698 @item VIM
699
700 For @uref{http://@/www@/.vim@/.org,VIM}, a @file{vimrc} is supplied, along
701 with syntax coloring tools.  For more information, refer to the
702 @ifhtml
703 @uref{source/Documentation/topdocs/INSTALL.html,installation instructions}.
704 @end ifhtml
705 @ifnothtml
706 installation instructions.
707 @end ifnothtml
708
709
710 @item LilyPondTool
711
712 Created as a plugin for the @uref{http://@/www@/.jedit@/.org@/,jEdit} text
713 editor, LilyPondTool is the most feature-rich text-based tool for editing
714 LilyPond scores.  Its features include a Document Wizard with lyrics
715 support to set up documents easier, and embedded PDF viewer with advanced
716 point-and-click support.  For screenshots, demos and installation
717 instructions, visit @uref{http://lilypondtool@/.organum@/.hu}
718
719 @end table
720
721 All these editors can be made to jump into the input file to the source
722 of a symbol in the graphical output.  See @ref{Point and click}.
723
724
725 @node Point and click
726 @section Point and click
727 @cindex point and click
728
729
730 Point and click lets you find notes in the input by clicking on them
731 in the PDF viewer.  This makes it easier to find input that causes
732 some error in the sheet music.
733
734 When this functionality is active, LilyPond adds hyperlinks to the PDF
735 file. These hyperlinks are sent to the web-browser, which opens a
736 text-editor with the cursor in the right place.
737
738 To make this chain work, you should configure your PDF viewer to
739 follow hyperlinks using the @file{lilypond-invoke-editor} script
740 supplied with LilyPond.
741
742 For Xpdf on Unix, the following should be present in
743 @file{xpdfrc}@footnote{On unix, this file is found either in
744 @file{/etc/xpdfrc} or as @file{.xpdfrc} in your home directory.}
745
746 @example
747 urlCommand     "lilypond-invoke-editor %s"
748 @end example
749
750 The program @file{lilypond-invoke-editor} is a small helper
751 program. It will invoke an editor for the special @code{textedit}
752 URIs, and run a web browser for others.  It tests the environment
753 variable @code{EDITOR} for the following patterns,
754
755 @table @code
756 @item emacs
757   this will invoke
758 @example
759 emacsclient --no-wait +@var{line}:@var{column} @var{file}
760 @end example
761 @item vim
762   this will invoke
763 @example
764 gvim --remote +:@var{line}:norm@var{char} @var{file}
765 @end example
766
767 @item nedit
768 this will invoke
769 @example
770   nc -noask +@var{line} @var{file}'
771 @end example
772 @end table
773
774 The environment variable @code{LYEDITOR} is used to override this. It
775 contains the command line to start the editor, where @code{%(file)s},
776 @code{%(column)s}, @code{%(line)s} is replaced with the file, column
777 and line respectively. The  setting
778
779 @example
780 emacsclient --no-wait +%(line)s:%(column)s %(file)s
781 @end example
782
783 @noindent
784 for @code{LYEDITOR} is equivalent to the standard emacsclient
785 invocation.
786
787
788 @cindex file size, output
789
790 The point and click links enlarge the output files significantly. For
791 reducing the size of PDF and PS files, point and click may be switched
792 off by issuing
793
794 @example
795 #(ly:set-option 'point-and-click #f)
796 @end example
797
798 @noindent
799 in a @file{.ly} file.  Alternately, you may pass this as an command-line
800 option
801
802 @example
803 lilypond -dno-point-and-click file.ly
804 @end example
805