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