]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/introduction.itely
Replace colons with periods before music snippets
[lilypond.git] / Documentation / user / introduction.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 @node Introduction
11 @chapter Introduction
12
13
14 @menu
15 * Engraving::                   
16 * Automated engraving::         
17 * What symbols to engrave?::    
18 * Music representation::        
19 * Example applications::        
20 * About this manual::           
21 @end menu
22
23
24 @node Engraving
25 @section Engraving
26
27 The art of music typography is called @emph{(plate) engraving}.  The
28 term derives from the traditional process of music printing.  Just a
29 few decades ago, sheet music was made by cutting and stamping the
30 music into a zinc or pewter plate in mirror image.  The plate would be
31 inked, the depressions caused by the cutting and stamping would hold
32 ink.  An image was formed by pressing paper to the plate.  The
33 stamping and cutting was completely done by hand.  Making a correction
34 was cumbersome, if possible at all, so the engraving had to be perfect
35 in one go.  Engraving was a highly specialized skill; a craftsman had
36 to complete around five years of training before earning the title of
37 master engraver, and another five years of experience were
38 necessary to become truly skilled.
39
40 Nowadays, all newly printed music is produced with computers.  This
41 has obvious advantages; prints are cheaper to make, and editorial work
42 can be delivered by email.  Unfortunately, the pervasive use of
43 computers has also decreased the graphical quality of scores.
44 Computer printouts have a bland, mechanical look, which makes them
45 unpleasant to play from.
46
47
48 @c introduce illustrating aspects of engraving, font...
49 The images below illustrate the difference between traditional
50 engraving and typical computer output, and the third picture shows how
51 LilyPond mimics the traditional look.  The left picture shows a scan
52 of a flat symbol from an edition published in 2000.  The center
53 depicts a symbol from a hand-engraved B@"{a}renreiter edition of the
54 same music.  The left scan illustrates typical flaws of computer
55 print: the staff lines are thin, the weight of the flat symbol matches
56 the light lines and it has a straight layout with sharp corners.  By
57 contrast, the B@"{a}renreiter flat has a bold, almost voluptuous
58 rounded look.  Our flat symbol is designed after, among others, this
59 one.  It is rounded, and its weight harmonizes with the thickness of
60 our staff lines, which are also much thicker than lines in the
61 computer edition.
62
63 @multitable @columnfractions .125 .25 .25 .25 .125
64 @item @tab
65 @ifnotinfo
66 @iftex
67 @image{henle-flat-gray,,4cm}
68 @end iftex
69 @ifnottex
70 @image{henle-flat-gray,,,png}
71 @end ifnottex
72
73 @tab
74 @iftex
75 @image{baer-flat-gray,,4cm}
76 @end iftex
77 @ifnottex
78 @image{baer-flat-gray,,,png}
79 @end ifnottex
80
81 @tab
82 @iftex
83 @image{lily-flat-bw,,4cm}
84 @end iftex
85 @ifnottex
86 @image{lily-flat-bw,,,png}
87 @end ifnottex
88 @end ifnotinfo
89 @ifinfo
90 @c workaround for makeinfo-4.6: line breaks and multi-column cookies
91 @image{henle-flat-bw,,,png} @image{baer-flat-bw,,,png}
92 @image{lily-flat-bw,,,png}
93 @end ifinfo
94
95 @item @tab
96 Henle (2000)
97 @tab
98 B@"{a}renreiter (1950)
99 @tab
100 LilyPond Feta font (2003)
101
102 @end multitable
103
104
105 @cindex musical symbols
106 @cindex font
107 @cindex blackness
108 @cindex balance
109
110 @c introduce illustrating aspects of engraving, spacing...
111 In spacing, the distribution of space should reflect the durations
112 between notes.  However, many modern scores adhere to the durations
113 with mathematical precision, which leads to poor results.  In the next
114 example a motive is printed twice: once using exact mathematical
115 spacing, and once with corrections.  Can you spot which fragment is
116 which?
117
118 @cindex optical spacing
119 @c file spacing-optical.
120 @c need to include it here,  because we want two images.
121 @lilypond
122 \paper {
123   ragged-right = ##t
124   indent = #0.0
125 }
126
127 music = {
128    c'4 e''4 e'4 b'4 |
129    \stemDown
130    b'8[ e'' a' e'']
131    \stemNeutral
132    e'8[ e'8 e'8 e'8]
133 }
134
135 \score
136 {
137   \music
138   \layout {
139     \context {
140       \Staff
141       \override NoteSpacing #'stem-spacing-correction = #0.6
142     }
143   }
144 }
145 @end lilypond
146
147 @lilypond
148 \paper {
149   ragged-right = ##t
150   indent = #0.0
151 }
152
153 music = {
154    c'4 e''4 e'4 b'4 |
155    \stemDown
156    b'8[ e'' a' e'']
157    \stemNeutral
158    e'8[ e'8 e'8 e'8]
159 }
160 \score
161 {
162   \music
163   \layout {
164     \context {
165       \Staff
166       \override NoteSpacing #'stem-spacing-correction = #0.0
167       \override NoteSpacing #'same-direction-correction = #0.0
168       \override StaffSpacing #'stem-spacing-correction = #0.0
169     }
170   }
171 }
172 @end lilypond
173
174 @cindex regular rhythms
175 @cindex regular spacing
176
177 Each bar in the fragment only uses notes that are played in a constant
178 rhythm.  The spacing should reflect that.  Unfortunately, the eye
179 deceives us a little; not only does it notice the distance between
180 note heads, it also takes into account the distance between
181 consecutive stems.  As a result, the notes of an up-stem/@/down-stem
182 combination should be put farther apart, and the notes of a
183 down-stem/@/up-stem combination should be put closer together, all
184 depending on the combined vertical positions of the notes.  The upper
185 two measures are printed with this correction, the lower two measures
186 without, forming down-stem/@/up-stem clumps of notes.
187
188 @cindex typography
189
190 Musicians are usually more absorbed with performing than with studying
191 the looks of a piece of music, so nitpicking about typographical
192 details may seem academical.  But it is not.  In larger pieces with
193 monotonous rhythms, spacing corrections lead to subtle variations in
194 the layout of every line, giving each one a distinct visual signature.
195 Without this signature all lines would look the same, and they become
196 like a labyrinth.  If a musician looks away once or has a lapse in
197 concentration, the lines might lose their place on the page.
198
199 Similarly, the strong visual look of bold symbols on heavy staff lines
200 stands out better when the music is far away from the reader, for
201 example, if it is on a music stand.  A careful distribution of white
202 space allows music to be set very tightly without cluttering symbols
203 together.  The result minimizes the number of page turns, which is a
204 great advantage.
205
206 This is a common characteristic of typography.  Layout should be
207 pretty, not only for its own sake, but especially because it helps the
208 reader in her task.  For performance material like sheet music, this
209 is of double importance: musicians have a limited amount of attention.
210 The less attention they need for reading, the more they can focus on
211 playing the music.  In other words, better typography translates to
212 better performances.
213
214 These examples demonstrate that music typography is an art that is
215 subtle and complex, and that producing it requires considerable
216 expertise, which musicians usually do not have.  LilyPond is our
217 effort to bring the graphical excellence of hand-engraved music to the
218 computer age, and make it available to normal musicians.  We have
219 tuned our algorithms, font-designs, and program settings to produce
220 prints that match the quality of the old editions we love to see and
221 love to play from.
222
223
224
225
226 @node Automated engraving
227 @section Automated engraving
228
229 How do we go about implementing typography?  If craftsmen need over
230 ten years to become true masters, how could we simple hackers ever
231 write a program to take over their jobs?
232
233 The answer is: we cannot.  Typography relies on human judgment of
234 appearance, so people cannot be replaced completely.  However, much of
235 the dull work can be automated.  If LilyPond solves most of the common
236 situations correctly, this will be a huge improvement over existing
237 software.  The remaining cases can be tuned by hand.  Over the course
238 of years, the software can be refined to do more and more things
239 automatically, so manual overrides are less and less necessary.
240
241 When we started, we wrote the LilyPond program entirely in the C++
242 programming language; the program's functionality was set in stone by
243 the developers.  That proved to be unsatisfactory for a number of
244 reasons:
245
246 @itemize @bullet
247 @item When LilyPond makes mistakes,
248 users need to override formatting decisions.  Therefore, the user must
249 have access to the formatting engine.  Hence, rules and settings cannot
250 be fixed by us at compile-time but must be accessible for users at
251 run-time.
252
253 @item Engraving is a matter of visual judgment, and therefore a matter of
254 taste.  As knowledgeable as we are, users can disagree with our
255 personal decisions.  Therefore, the definitions of typographical style
256 must also be accessible to the user.
257
258 @item Finally, we continually refine the formatting algorithms, so we
259 need a flexible approach to rules.  The C++ language forces a certain
260 method of grouping rules that do not match well with how music
261 notation works.
262 @end itemize
263
264 These problems have been addressed by integrating an interpreter for
265 the Scheme programming language and rewriting parts of LilyPond in
266 Scheme.  The current formatting architecture is built around the
267 notion of graphical objects, described by Scheme variables and
268 functions.  This architecture encompasses formatting rules,
269 typographical style and individual formatting decisions.  The user has
270 direct access to most of these controls.
271
272 Scheme variables control layout decisions.  For example, many
273 graphical objects have a direction variable that encodes the choice
274 between up and down (or left and right).  Here you see two chords,
275 with accents and arpeggios.  In the first chord, the graphical objects
276 have all directions down (or left).  The second chord has all
277 directions up (right).
278
279 @lilypond[quote,ragged-right]
280 \new Score \with {
281    \override SpacingSpanner #'spacing-increment = #3
282    \override TimeSignature #'transparent = ##t
283 } \relative {
284    \stemDown <e g b>4_>-\arpeggio
285    \override Arpeggio #'direction = #RIGHT
286    \stemUp <e g b>4^>-\arpeggio
287 }
288 @end lilypond
289
290 @noindent
291 The process of formatting a score consists of reading and writing the
292 variables of graphical objects.  Some variables have a preset value.  For
293 example, the thickness of many lines -- a characteristic of typographical
294 style -- is a variable with a preset value.  You are free to alter this
295 value, giving your score a different typographical impression.
296
297 @lilypond[quote,ragged-right]
298 fragment = {
299    \clef bass f8 as8
300    c'4-~ c'16 as g f e16 g bes c' des'4
301 }
302 <<
303    \new Staff \fragment
304    \new Staff \with {
305       \override Beam #'thickness = #0.3
306       \override Stem #'thickness = #0.5
307       \override Bar #'thickness = #3.6
308       \override Tie #'thickness = #2.2
309       \override StaffSymbol #'thickness = #3.0
310       \override Tie #'extra-offset = #'(0 .  0.3)
311       }
312       \fragment
313 >>
314 @end lilypond
315
316 Formatting rules are also preset variables: each object has variables
317 containing procedures.  These procedures perform the actual
318 formatting, and by substituting different ones, we can change the
319 appearance of objects.  In the following example, the rule which note
320 head objects are used to produce their symbol is changed during the
321 music fragment.
322
323 @lilypond[quote,ragged-right]
324 #(set-global-staff-size 30)
325
326 #(define (mc-squared grob orig current)
327   (let* ((interfaces (ly:grob-interfaces grob))
328          (pos (ly:grob-property grob 'staff-position)))
329     (if (memq 'note-head-interface interfaces)
330         (begin
331           (ly:grob-set-property! grob 'stencil ly:text-interface::print)
332           (ly:grob-set-property! grob 'font-family 'roman)
333           (ly:grob-set-property! grob 'text
334             (make-raise-markup -0.5
335               (case pos
336                 ((-5) (make-simple-markup "m"))
337                 ((-3) (make-simple-markup "c "))
338                 ((-2) (make-smaller-markup (make-bold-markup "2")))
339                 (else (make-simple-markup "bla")))))))))
340
341 \new Voice \relative c' {
342    \stemUp
343    \set autoBeaming = ##f
344    \time 2/4
345    <d f g>4
346    \once \override NoteHead #'stencil = #ly:note-head::brew-ez-stencil
347    \once \override NoteHead #'font-size = #-7
348    \once \override NoteHead #'font-family = #'sans
349    \once \override NoteHead #'font-series = #'bold
350    <d f g>
351    \once \override NoteHead #'style = #'cross
352    <d f g>
353    \applyOutput #'Voice #mc-squared
354    <d f g>
355    <<
356       { d8[ es-( fis^^ g] fis2-) }
357       \repeat unfold 5 { \applyOutput #'Voice #mc-squared s8 }
358    >>
359 }
360 @end lilypond
361
362
363
364 @node What symbols to engrave?
365 @section What symbols to engrave?
366
367 @cindex engraving
368 @cindex typography
369
370 The formatting process decides where to place symbols.  However, this
371 can only be done once it is decided @emph{what} symbols should be
372 printed, in other words what notation to use.
373
374 Common music notation is a system of recording music that has evolved
375 over the past 1000 years.  The form that is now in common use dates
376 from the early renaissance.  Although the basic form (i.e., note heads
377 on a 5-line staff) has not changed, the details still evolve to
378 express the innovations of contemporary notation.  Hence, it
379 encompasses some 500 years of music.  Its applications range from
380 monophonic melodies to monstrous counterpoints for large orchestras.
381
382 How can we get a grip on such a many-headed beast, and force it into
383 the confines of a computer program?  Our solution is to break up the
384 problem of notation (as opposed to engraving, i.e., typography) into
385 digestible and programmable chunks: every type of symbol is handled by
386 a separate module, a so-called plug-in.  Each plug-in is completely
387 modular and independent, so each can be developed and improved
388 separately.  Such plug-ins are called @code{engraver}s, by analogy
389 with craftsmen who translate musical ideas to graphic symbols.
390
391 In the following example, we see how we start out with a plug-in for
392 note heads, the @code{Note_heads_engraver}.
393
394 @lilypond[quote,ragged-right]
395 \include "engraver-example.ily"
396
397 \score {
398    \topVoice
399    \layout {
400    \context {
401       \Voice
402       \remove "Stem_engraver"
403       \remove "Phrasing_slur_engraver"
404       \remove "Slur_engraver"
405       \remove "Script_engraver"
406       \remove "Beam_engraver"
407       \remove "Auto_beam_engraver"
408    }
409    \context {
410       \Staff
411       \remove "Accidental_engraver"
412       \remove "Key_engraver"
413       \remove "Clef_engraver"
414       \remove "Bar_engraver"
415       \remove "Time_signature_engraver"
416       \remove "Staff_symbol_engraver"
417       \consists "Pitch_squash_engraver"
418    }
419 }
420 }
421 @end lilypond
422
423 @noindent
424 Then a @code{Staff_symbol_engraver} adds the staff
425
426 @lilypond[quote,ragged-right]
427 \include "engraver-example.ily"
428
429 \score {
430   \topVoice
431   \layout {
432     \context {
433       \Voice
434       \remove "Stem_engraver"
435       \remove "Phrasing_slur_engraver"
436       \remove "Slur_engraver"
437       \remove "Script_engraver"
438       \remove "Beam_engraver"
439       \remove "Auto_beam_engraver"
440     }
441     \context {
442       \Staff
443       \remove "Accidental_engraver"
444       \remove "Key_engraver"
445       \remove "Clef_engraver"
446       \remove "Bar_engraver"
447       \consists "Pitch_squash_engraver"
448       \remove "Time_signature_engraver"
449     }
450   }
451 }
452 @end lilypond
453
454 @noindent
455 the @code{Clef_engraver} defines a reference point for the staff
456
457 @lilypond[quote,ragged-right]
458 \include "engraver-example.ily"
459
460 \score {
461   \topVoice
462   \layout {
463     \context {
464       \Voice
465       \remove "Stem_engraver"
466       \remove "Phrasing_slur_engraver"
467       \remove "Slur_engraver"
468       \remove "Script_engraver"
469       \remove "Beam_engraver"
470       \remove "Auto_beam_engraver"
471     }
472     \context {
473       \Staff
474       \remove "Accidental_engraver"
475       \remove "Key_engraver"
476       \remove "Bar_engraver"
477       \remove "Time_signature_engraver"
478     }
479   }
480 }
481 @end lilypond
482
483 @noindent
484 and the @code{Stem_engraver} adds stems.
485
486 @lilypond[quote,ragged-right]
487 \include "engraver-example.ily"
488
489 \score {
490   \topVoice
491   \layout {
492     \context {
493       \Voice
494       \remove "Phrasing_slur_engraver"
495       \remove "Slur_engraver"
496       \remove "Script_engraver"
497       \remove "Beam_engraver"
498       \remove "Auto_beam_engraver"
499     }
500     \context {
501       \Staff
502       \remove "Accidental_engraver"
503       \remove "Key_engraver"
504       \remove "Bar_engraver"
505       \remove "Time_signature_engraver"
506     }
507   }
508 }
509 @end lilypond
510
511 @noindent
512 The @code{Stem_engraver} is notified of any note head coming along.
513 Every time one (or more, for a chord) note head is seen, a stem
514 object is created and connected to the note head.  By adding
515 engravers for beams, slurs, accents, accidentals, bar lines,
516 time signature, and key signature, we get a complete piece of
517 notation.
518
519 @lilypond[quote,ragged-right]
520 \include "engraver-example.ily"
521 \score { \topVoice }
522 @end lilypond
523
524 This system works well for monophonic music, but what about
525 polyphony?  In polyphonic notation, many voices can share a staff.
526
527 @lilypond[quote,ragged-right]
528 \include "engraver-example.ily"
529 \new Staff << \topVoice \\ \botVoice >>
530 @end lilypond
531
532 In this situation, the accidentals and staff are shared, but the stems,
533 slurs, beams, etc., are private to each voice.  Hence, engravers should
534 be grouped.  The engravers for note heads, stems, slurs, etc., go into a
535 group called @q{Voice context,} while the engravers for key, accidental,
536 bar, etc., go into a group called @q{Staff context.}  In the case of
537 polyphony, a single Staff context contains more than one Voice context.
538 Similarly, multiple Staff contexts can be put into a single Score
539 context.  The Score context is the top level notation context.
540
541 @seealso
542
543 Program reference: @internalsref{Contexts}.
544
545 @lilypond[quote,ragged-right]
546 \include "engraver-example.ily"
547 \score {
548    <<
549       \new Staff << \topVoice \\ \botVoice >>
550       \new Staff << \pah \\ \hoom >>
551    >>
552 }
553 @end lilypond
554
555 @node Music representation
556 @section Music representation
557
558 Ideally, the input format for any high-level formatting system is an
559 abstract description of the content.  In this case, that would be the
560 music itself.  This poses a formidable problem: how can we define what
561 music really is? Instead of trying to find an answer, we have reversed
562 the question.  We write a program capable of producing sheet music,
563 and adjust the format to be as lean as possible.  When the format can
564 no longer be trimmed down, by definition we are left with content
565 itself.  Our program serves as a formal definition of a music
566 document.
567
568 The syntax is also the user-interface for LilyPond, hence it is easy
569 to type
570
571 @example
572 c'4 d'8
573 @end example
574
575 @noindent
576 a quarter note C1 (middle C) and an eighth note D1 (D above middle C)
577
578 @lilypond[quote,fragment]
579 c'4 d'8
580 @end lilypond
581
582 On a microscopic scale, such syntax is easy to use.  On a larger
583 scale, syntax also needs structure.  How else can you enter complex
584 pieces like symphonies and operas?  The structure is formed by the
585 concept of music expressions: by combining small fragments of music
586 into larger ones, more complex music can be expressed.  For example
587
588 @lilypond[quote,verbatim,fragment,relative=1]
589 c4
590 @end lilypond
591
592 @noindent
593 Chords can be constructed with @code{<<} and @code{>>} enclosing the notes
594
595 @c < > is not a music expression,
596 @c so we use <<>> iso. <> to drive home the point of
597 @c expressions.  Don't change this back --hwn.
598 @example
599 <<c4 d4 e4>>
600 @end example
601
602 @lilypond[quote,fragment,relative=1]
603 \new Voice { <<c4 d4 e>> }
604 @end lilypond
605
606 @noindent
607 This expression is put in sequence by enclosing it in curly braces
608 @code{@{@tie{}@dots{}@tie{}@}}
609
610 @example
611 @{ f4 <<c4 d4 e4>> @}
612 @end example
613
614 @lilypond[quote,relative=1,fragment]
615 { f4 <<c d e4>> }
616 @end lilypond
617
618 @noindent
619 The above is also an expression, and so it may be combined
620 again with another simultaneous expression (a half note) using <<,
621 @code{\\}, and >>
622
623 @example
624 << g2 \\ @{ f4 <<c4 d4 e4>> @} >>
625 @end example
626
627 @lilypond[quote,fragment,relative=2]
628 \new Voice { << g2 \\ { f4 <<c d e>> } >> }
629 @end lilypond
630
631 Such recursive structures can be specified neatly and formally in a
632 context-free grammar.  The parsing code is also generated from this
633 grammar.  In other words, the syntax of LilyPond is clearly and
634 unambiguously defined.
635
636 User-interfaces and syntax are what people see and deal with
637 most.  They are partly a matter of taste, and also subject of much
638 discussion.  Although discussions on taste do have their merit, they
639 are not very productive.  In the larger picture of LilyPond, the
640 importance of input syntax is small: inventing neat syntax is easy, while
641 writing decent formatting code is much harder.  This is also
642 illustrated by the line-counts for the respective components: parsing
643 and representation take up less than 10% of the source code.
644
645
646 @node Example applications
647 @section Example applications
648
649 We have written LilyPond as an experiment of how to condense the art
650 of music engraving into a computer program.  Thanks to all that hard
651 work, the program can now be used to perform useful tasks.  The
652 simplest application is printing notes.
653
654 @lilypond[quote,relative=1,fragment]
655 \time 2/4 c4 c g'4 g a4 a g2
656 @end lilypond
657
658 @noindent
659 By adding chord names and lyrics we obtain a lead sheet.
660
661 @lilypond[quote,ragged-right]
662 <<
663    \chords { c2 c f2 c }
664    \new Staff \relative c' { \time 2/4 c4 c g'4 g a4 a g2 }
665    \new Lyrics \lyricmode { twin4 kle twin kle lit tle star2 }
666 >>
667 @end lilypond
668
669 Polyphonic notation and piano music can also be printed.  The following
670 example combines some more exotic constructs.
671
672 @lilypondfile[quote,ragged-right]{screech-boink.ly}
673
674 The fragments shown above have all been written by hand, but that is
675 not a requirement.  Since the formatting engine is mostly automatic, it
676 can serve as an output means for other programs that manipulate
677 music.  For example, it can also be used to convert databases of
678 musical fragments to images for use on websites and multimedia
679 presentations.
680
681 This manual also shows an application: the input format is text, and
682 can therefore be easily embedded in other text-based formats such as
683 @LaTeX{}, HTML, or in the case of this manual, Texinfo.  By means of a
684 special program, the input fragments can be replaced by music images
685 in the resulting PDF or HTML output files.  This makes it easy
686 to mix music and text in documents.
687
688
689
690 @node About this manual
691 @section About this manual
692
693 The manual is divided into the following chapters:
694 @itemize @bullet
695
696 @item
697 @ifhtml
698 The
699 @end ifhtml
700 @emph{@ref{Tutorial}}
701 gives a gentle introduction to typesetting music.  First time
702 users should start here.
703
704 @item
705 @emph{@ref{Putting it all together}}
706 explains some general concepts about the lilypond file format.  If
707 you are not certain where to place a command, read this chapter!
708
709 @item
710 @emph{@ref{Working on LilyPond projects}}
711 discusses practical uses of LilyPond and how to avoid some common
712 problems.
713
714 @item
715 @emph{@ref{Tweaking output}}
716 shows how to change the default engraving that LilyPond
717 produces.
718
719 @item
720 @emph{@ref{Basic notation}}
721 discusses topics grouped by notation construct.  This section gives
722 details about basic notation that will be useful in almost any
723 notation project.
724
725 @item
726 @emph{@ref{Instrument-specific notation}}
727 discusses topics grouped by notation construct.  This section gives
728 details about special notation that will only be useful for particular
729 instrument (or vocal) groups.
730
731 @item
732 @emph{@ref{Advanced notation}}
733 discusses topics grouped by notation construct.  This section gives
734 details about complicated or unusual notation.
735
736 @item
737 @emph{@ref{Changing defaults}}
738 explains how to fine tune layout.
739
740 @item
741 @emph{@ref{Non-musical notation}}
742 discusses non-musical output such as titles, multiple movements,
743 and how to select which MIDI instruments to use.
744
745 @item
746 @emph{@ref{Spacing issues}}
747 discusses issues which affect the global output, such as selecting
748 paper size or specifying page breaks.
749
750 @item
751 @emph{@ref{Interfaces for programmers}}
752 explains how to create music functions.
753
754 @item
755 @emph{@ref{Running LilyPond}}
756 shows how to run LilyPond and its helper programs.  In addition, this
757 section explains how to upgrade input files from previous versions of
758 LilyPond.
759
760 @item
761 @emph{@ref{LilyPond-book}} explains the details behind creating
762 documents with in-line music examples, like this manual.
763
764 @item
765 @emph{@ref{Converting from other formats}}
766 explains how to run the conversion programs.  These programs are
767 supplied with the LilyPond package, and convert a variety of music
768 formats to the @code{.ly} format.
769
770 @item
771 @ifhtml
772 The
773 @end ifhtml
774 @emph{@ref{Literature list}}
775 contains a set of useful reference books for those who wish to know
776 more on notation and engraving.
777
778 @item
779 The
780 @emph{@ref{Scheme tutorial}}
781 presents a short introduction to Scheme, the programming
782 language that music functions use.
783
784 @item
785 @emph{@ref{Notation manual tables}}
786 are a set of tables showing the chord names, MIDI instruments,
787 a list of color names, and the Feta font.
788
789 @item
790 @emph{@ref{Example templates}}
791 provides templates of LilyPond pieces.  Just cut and paste a
792 template into a file, add notes, and you're done!
793
794 @item
795 The
796 @emph{@ref{Cheat sheet}}
797 is a handy reference of the most common LilyPond commands.
798
799 @item
800 The
801 @emph{@ref{LilyPond command index}}
802 is an index of all LilyPond @code{\commands}.
803
804 @item
805 The
806 @emph{@ref{LilyPond index}}
807 is a complete index.
808
809 @end itemize
810
811
812 Once you are an experienced user, you can use the manual as reference:
813 there is an extensive index@footnote{If you are looking for something,
814 and you cannot find it in the manual, that is considered a bug.  In
815 that case, please file a bug report.}, but the document is also
816 available in
817 @iftex
818 a big HTML page,
819 @end iftex
820 @ifhtml
821 @uref{source/Documentation/user/lilypond.html, one big page},
822 @end ifhtml
823 which can be searched easily using the search facility of a web
824 browser.
825 @cindex search in manual
826 @cindex using the manual
827
828 @c FIXME:
829 @c add/integrate glossary, put in list above
830 If you are not familiar with music notation or music terminology
831 (especially if you are a non-native English speaker), it is advisable
832 to consult the glossary as well.
833 @iftex
834 The music glossary explains musical terms, and includes translations
835 to various languages.  It is a separate document, available in HTML
836 and PDF.
837 @end iftex
838 @ifnottex
839 The @ref{Top,Music glossary,,music-glossary}, explains musical terms and
840 includes translations to various languages.  It is also available in
841 PDF.
842 @end ifnottex
843 @cindex idiom
844 @cindex jargon
845 @cindex terminology
846 @cindex foreign languages
847 @cindex language
848
849
850 This manual is not complete without a number of other documents.  They
851 are not available in print, but should be included with the
852 documentation package for your platform
853
854 @itemize @bullet
855 @item
856 @iftex
857 Program reference
858 @end iftex
859 @ifnottex
860 @ref{Top,Program reference,,lilypond-internals}.
861 @end ifnottex
862
863 The program reference is a set of heavily cross linked HTML pages,
864 which document the nitty-gritty details of each and every LilyPond
865 class, object, and function.  It is produced directly from the
866 formatting definitions used.
867
868 Almost all formatting functionality that is used internally, is
869 available directly to the user.  For example, all variables that
870 control thickness values, distances, etc., can be changed in input
871 files.  There are a huge number of formatting options, and all of them
872 are described in this document.  Each section of the notation manual
873 has a @b{See also} subsection, which refers to the generated
874 documentation.  In the HTML document, these subsections have clickable
875 links.
876
877 @cindex snippets
878 @item
879 @ifnothtml
880 Various input examples.
881 @end ifnothtml
882 @ifhtml
883 @c Works, but link name is not so nice; so write-out macro
884 @c @inputfileref{input/test,Various input examples}.
885 @uref{source/input/test/collated-files.html,Various input examples}.
886 @end ifhtml
887
888 This collection of files shows various tips and tricks, and is
889 available as a big HTML document, with pictures and explanatory texts
890 included.
891
892 @item
893 @ifnothtml
894 The regression tests.
895 @end ifnothtml
896 @ifhtml
897 @c Works, but link name is not so nice; so write-out macro
898 @c @inputfileref{input/regression,The regression tests}.
899 @uref{source/input/regression/collated-files.html,The regression tests}.
900 @end ifhtml
901
902 This collection of files tests each notation and engraving feature of
903 LilyPond in one file.  The collection is primarily there to help us
904 debug problems, but it can be instructive to see how we exercise the
905 program.  The format is similar to the tips and tricks document.
906 @end itemize
907
908
909 In all HTML documents that have music fragments embedded, the LilyPond
910 input that was used to produce that image can be viewed by clicking
911 the image.
912
913 The location of the documentation files that are mentioned here can
914 vary from system to system.  On occasion, this manual refers to
915 initialization and example files.  Throughout this manual, we refer to
916 input files relative to the top-directory of the source archive.  For
917 example, @file{input/@/test/@/bla@/.ly} may refer to the file
918 @file{lilypond@/2.x.y/@/input/@/test/@/bla@/.ly}.  On binary packages
919 for the Unix platform, the documentation and examples can typically be
920 found somewhere below @file{/usr/@/share/@/doc/@/lilypond/}.
921 Initialization files, for example @file{scm/@/lily@/.scm}, or
922 @file{ly/@/engraver@/-init@/.ly}, are usually found in the directory
923 @file{/usr/@/share/@/lilypond/}.
924
925 @cindex adjusting output
926 @cindex variables
927 @cindex properties
928 @cindex lilypond-internals
929 @cindex internal documentation
930 @cindex Scheme
931 @cindex extending lilypond
932 @cindex index
933
934 Finally, this and all other manuals, are available online both as PDF
935 files and HTML from the web site, which can be found at
936 @uref{http://@/www@/.lilypond@/.org/}.
937