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