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