lilypond-1.3.144
[lilypond.git] / Documentation / tex / tutorial.yo
blob5d5c11bac0b6f4ca73851447613418ae8e3fac38
1 mailto(gnu-music-discuss@gnu.org)
2 COMMENT(-*-text-*-)
4 redef(var)(1)(whenlatex(latexcommand({\normalfont\scshape )ARG1+latexcommand(}))\
5     whenhtml(sc(ARG1)))
7 COMMENT(urg)
8 DEFINEMACRO(Large)(1)(\
9     whenlatex(latexcommand(\Large{)ARG1+latexcommand(}))\
10     whentexinfo(texinfocommand(@strong{)ARG1+texinfocommand(}))\
11     whenhtml(htmlcommand(<font size=+2>)ARG1+htmlcommand(</font>))\
12     whentxt(ARG1))
14 COMMENT( This document contains Mudela fragments.  You need at least
15 Yodl-1.30.18 to convert this to tex or html.
17 TODO
19     * pipethrough(date) sucks.
20     * paragraphs have too much space.
21     * fix the amount of spaces (urg:tabs) at the start of verb() blocks
22       or even better: do verb and description side-by side
23       (TeX: use minipage construct):
25       \foo                  This does the
26                             foo construct
28       The explaining texts are right in between examples.
29       Constructs like 'This shows' and 'The next line' are esp.
30       confusing, here.
33 COMMENT(
34         Mainly written by Han-Wen Nienhuys, 
36         with help of (among others)
38         * Jan Nieuwenhuizen
41 htmlbodyopt(bgcolor)(white)
42 htmlcommand(<font color=black>)
44 latexlayoutcmds(
45     \topmargin -0.25in  
46     \textheight 53\baselineskip
47     \advance\textheight by \topskip
48     \marginparwidth 1 in        %   Width of marginal notes.
49     \oddsidemargin 0.25 in      %   Note that \oddsidemargin = \evensidemargin
50     \evensidemargin 0.25 in
51     \marginparwidth 0.75 in
52     \textwidth 5.875 in % Width of text line.
53     \input mudela-book
56 whenlatex(notableofcontents())
57 whentexinfo(notableofcontents())
59 article(Typesetting music with LilyPond)
60       (Han-Wen Nienhuys and Jan Nieuwenhuizen)
61       (nop()PIPETHROUGH(date "+%B %d, %Y")()()nop())
64 latexcommand(\def\interexample{})
65 latexcommand(\def\preexample{\par})
66 latexcommand(\def\postexample{\par\medskip})
67 latexcommand(\def\file#1{{code(#1)}})
69 whenhtml(
70 includefile(html-disclaimer.yo-urg)
74 sect(Introduction)
75 label(tutorial:introduction)
76 latexcommand(\parindent2pc)
77   
78 LilyPond prints music from a specification that you, the user, supply.
79 You have to give that specification using a em(language).  This
80 document is a gentle introduction to that language, which is called
81 Mudela, an acronym of Music Definition Language.
83 This tutorial will demonstrate how to use Mudela by presenting
84 examples of input along with resulting output.  We will use English
85 terms for notation.  In case you are not familiar with those, you may
86 consult the glossary that is distributed with LilyPond.
88 The examples discussed are included in the distribution, in the
89 subdirectory file(input/tutorial/).  It is recommended that you
90 experiment with writing Mudela input yourself, to get a feel for
91 how LilyPond behaves.
93 sect(The first tune)
94 label(sec:firsttune)
96 To demonstrate what LilyPond input looks like, we start off with a
97 full fledged, yet simple example. It is a convoluted version
98 of the famous menuet in bind(J.)bind(S.)Bach's em(Klavierbuechlein).
100 COMMENT(urg: the fermata sign is placed below the note by default)
101 mudela(verbatim)(% lines preceded by a percent are comments.
102 \include "paper16.ly"
103 \score {
104     \notes                        
105     \relative c'' \sequential{                
106             \time 3/4;                
107             \key g;
109         \repeat "volta" 2 {
110             d4 g,8 a b c d4 g, g |
111             e'4 c8 d e fis g4 g, g |
112             c4 d8()c b a( )b4 c8 b a g |
113             a4 [b8 a] [g fis] g2.  |
114         }
116         b'4 g8 a b g
117         a4 d,8 e fis d |
118         g4 e8 fis g d cis4 b8 cis a4 |
119         a8-. b-. cis-. d-. e-. fis-.
120         g4 fis e |
121         fis a,  r8 cis8
122         d2.-\fermata
123         \bar "|.";
124     }
125     \paper {
126        % standard settings are too wide for a book
127        linewidth = 14.0 \cm;
128    }
131 Enter it (or copy it, the filename is file(menuet.ly)), compile it
132 with LilyPond and view the output.  Details of this procedure may vary
133 from system to system.  To create the output, one would issue the
134 command `code(ly2dvi menuet)'.  file(ly2dvi) is a program that does
135 the job of running LilyPond and TeX(), handling of titles and
136 adjusting of page margins.
138 If all goes well, the file file(menuet.dvi) will be created.
139 To view this output, issue the command `code(xdvi menuet)'.
141 Now that we are familiar with the procedure of producing output, we
142 will analyse the input, line by line.COMMENT(
144 )verb(
145         % lines preceded by a percent are comments.
146 )COMMENT(
148 )The percent sign, `code(%)', introduces a line comment.  If you want to
149 make larger comments, you can use block comments. These are delimited
150 by `code(%{)' and `code(%})'COMMENT(
152 )verb(
153         \input "paper16.ly"
154 )COMMENT(
156 )By default, LilyPond will use definitions for a 20
157 nop(point)footnote(A point is the standard measure of length for
158 printing.  One point is 1/72.27 inch.) high staff.  We want smaller
159 output (16 point staff height), so we must import the settings for
160 that size, which is done.COMMENT(
162 )verb(
163         \score {
164 ) COMMENT(
166 ) A mudela file combines music with directions for outputting that
167 music.  The music is combined with the output directions by putting
168 them into a code(\score) block.
169 verb(
170         \notes                
171 ) COMMENT( 
173 )This makes LilyPond ready for accepting notes.
174 verb(
175         \relative c''
176 )COMMENT(
178 ) As we will see, pitches are combinations of octave, note name and
179 chromatic alteration.  In this scheme, the octave is indicated by
180 using raised quotes (`code(')') and ``lowered'' quotes (commas:
181 `code(,)').  The central C is denoted by code(c').  The C one octave
182 higher is code(c'').  One and two octaves below the central C is
183 denoted by code(c) and code(c,) respectively.
185 For pitches in a long piece you might have to type many quotes.  To
186 remedy this, LilyPond has a ``relative'' octave entry mode.  In this
187 mode, octaves of notes without quotes are chosen such that a note is
188 as close as possible (graphically, on the staff) to the the preceding
189 note.  If you add a high-quote an extra octave is added.  The lowered
190 quote (a comma) will subtract an extra octave.  Because the first note
191 has no predecessor, you have to give the (absolute) pitch of the note
192 to start with.COMMENT(
194 )verb(
195         \sequential {
196 )COMMENT(
198 )  What follows is sequential music, i.e.,
199 notes that are to be played and printed after each other.COMMENT(
201 )verb(
202         \time 3/4;
203 ) COMMENT(
205 ) This command changes the time signature of the current piece: a 3/4
206 sign is printed.  This command is also used to generate bar lines in
207 the right spots.COMMENT(
209 )verb(
210         \key g;
211 )COMMENT(
213 ) This command changes the current key to G-major.  Although this
214 command comes after the code(\time) command, in the output, the key
215 signature comes before the time signature: LilyPond knows about music
216 typesetting conventions. COMMENT(
218 )verb(
219         \repeat "volta" 2
220 ) COMMENT(
222 ) This command tells LilyPond that the following piece of music must
223 be played twice; code("volta") volta brackets should be used for
224 alternatives---if there were any.
225 COMMENT(
227 )verb(
228         {
229 )COMMENT(
231 )The subject of the repeat is again sequential music.  Since
232 code(\sequential) is such a common construct, a shorthand is provided:
233 just leave off code(\sequential), and the result is the same. COMMENT(
235 )verb(
236         d4
237 )COMMENT(
239 ) This is a note with pitch code(d) (determined up to octaves).  The
240 relative music was started with a code(c''), so the real pitch of this
241 note is code(d'').  The code(4) designates the duration of the note
242 (it is a quarter note). COMMENT(
244 )verb(
245         a b
246 )COMMENT(
248 )These are notes with pitch code(a) and code(b).  Because their
249 duration is the same as the code(g), there is no need to enter the
250 duration (You may enter it anyway, eg. code(a4 b4)) COMMENT(
252 )verb(
253         d4 g, g |
254 )COMMENT(
256 ) Three more notes.  The `code(|)' character is a `barcheck'.  When
257 processing the music, LilyPond will verify that barchecks are found at
258 the start of a measure.  This can help you track down errors.
260  So far, no notes were chromatically altered.  Here is the first one
261 that is: code(fis). Mudela by default uses Dutch note names, and
262 ``Fis'' is the Dutch note name for ``F sharp''.  However, there is no
263 sharp sign in the output. The program keeps track of key signatures,
264 and will only print accidentals if they are needed.
265 COMMENT(
267 )verb(
268         c8 d e fis
269 )COMMENT(
271 )LilyPond guesses were beams can be added to eighth and shorter notes.
272 In this case, a beam over 4 eighths is added.
273 COMMENT(
275 )verb(
276         c4 d8( )c b a( )b4 c8 b a g |
277 ) COMMENT(
279 ) The next line shows how to make a slur:
280 the beginning and ending note of the slur is marked with an opening and
281 closing parenthesis respectively.  In the line shown above this is
282 done for two slurs.  Slur markers (parentheses) are between
283 the notes.COMMENT( 
284 )verb(
285         a4 [b8 a] [g fis] 
286 )COMMENT(
288 )Automatic beaming can be overridden by inserting beam marks
289 (brackets).  Brackets are put around notes you want beamed.COMMENT(
291 )verb(
292         g2.  |
293 )COMMENT(
295 )A duration with augmentation dot  is notated
296 with the duration number followed by a period.COMMENT(
297 )verb(
298         }
299 ) COMMENT(
301 ) This ends the sequential music to be repeated.  LilyPond will typeset
302 a repeat bar.  COMMENT(
304 )verb(
305         cis'4 b8 cis a4 |
306 ) COMMENT(
308 )This line shows that Lily will print an accidental if that is
309 needed: the first C sharp will be printed with an accidental, the
310 second one without.  COMMENT(
312 )verb(
313         a8-. b-. cis-. d-. e-. fis-.
314 )COMMENT(
316 )You can enter articulation signs either in a verbose form using a
317 shorthand.  Here we demonstrate the shorthand: it is formed by a dash
318 and the the character for the articulation to use, e.g. `code(-.)' for
319 staccato as shown above.  COMMENT(
321 )verb(
322         fis a, r8 cis8
323 ) COMMENT(
326 Rests are denoted by the special notename `code(r)'.  You can also enter
327 an invisible rest by using the special notename `code(s)'.
328 verb(
329         d2.-\fermata
330 ) COMMENT(
332 )All articulations have a verbose form, like code(\fermata).  The
333 command `code(\fermata)' is not part of the core of the language (most
334 of the other discussed elements are), but it is a shorthand for a more
335 complicated description of a fermata.  code(\fermata) names that
336 description and is therefore called an em(identifier). COMMENT(
338 )verb(
339         }
340 ) COMMENT(
343 Here the music ends.
344 COMMENT(
346 )verb(
347         \paper {
348                 linewidth = 14.0\cm;
349         }
350 )COMMENT(
352 )This specifies a conversion from music to notation output.  Most of
353 the details of this conversions (font sizes, dimensions, etc.) have
354 been taken care of, but  to fit the output  in this document, it has
355 to be smaller.  We do this by setting the line width to 14 centimeters
356 (approximately 6 inches).
357 COMMENT(
359 )verb(
360         }
361 )COMMENT(
363 )The last brace ends the code(\score) block.
365 There are two things to note here. The format contains musical
366 concepts like pitches and durations, instead of symbols and positions:
367 the input format tries to capture the meaning of em(music), and not
368 notation.  Therefore Second, the format tries to be em(context-free):
369 a note will sound the same regardless of the current time signature,
370 the key, etc.
372 The purpose of LilyPond is explained informally by the term `music
373 typesetter'.  This is not a fully correct name: not only does the
374 program print musical symbols, it also makes esthetic decisions.  All
375 symbols and their placement is em(generated) from a high-level musical
376 description.  In other words,  LilyPond would be best
377 described by `music compiler' or `music to notation compiler'.
380 sect(Lyrics and chords)
382 In this section we show how to typeset a song of unknown
383 origin.footnote(The author would welcome information about the origin
384 of this song.).
386 verb(\header {
387         title = "The river is flowing";
388         composer = "Traditional (?)";
390 \include "paper16.ly"
391 melody = \notes \relative c' {
392         \partial 8;
393         g8 |
394         c4 c8 d [es () d] c4 | f4 f8 g [es() d] c g |
395         c4 c8 d [es () d] c4 | d4 es8 d c4.
396         \bar "|.";
399 text = \lyrics {
400         The ri -- ver is flo- __ wing, flo -- wing and gro -- wing, the
401         ri -- ver is flo -- wing down to the sea.
404 accompaniment =\chords {
405         r8
406         c2-3- f-3-.7 d-min es4 c8-min r8
407         c2-min f-min7 g-7^3.5 c-min }
409 \score {
410         \simultaneous {
411 %         \accompaniment
412           \context ChordNames \accompaniment
414           \addlyrics
415             \context Staff = mel {        
416               \property Staff.noAutoBeaming = "1"
417               \property Staff.automaticMelismata = "1"
418               \melody 
419             }
420             \context Lyrics \text
421         }
422         \midi  { }
423         \paper { linewidth = 10.0\cm; }
427 The result would look nop(this)footnote(The titling and font size shown
428 may differ, since the titling in this document is not generated by
429 file(ly2dvi).).
431 center(bf(Large(The river is flowing))
433 var(Traditional (?))
436 mudela(center)(\header {
437         title = "The river is flowing";
438         composer = "Traditional (?)";
440 \include "paper16.ly"
441 melody = \notes \relative c' {
442         \partial 8;
443         g8 |
444         c4 c8 d [es () d] c4 | f4 f8 g [es() d] c g |
445         c4 c8 d [es () d] c4 | d4 es8 d c4.
446         \bar "|.";
449 text = \lyrics {
450         The ri -- ver is flo- __ wing, flo -- wing and gro -- wing, the
451         ri -- ver is flo -- wing down to the sea.
454 accompaniment =\chords {
455         r8
456         c2-3- f-3-.7 d-min es4 c8-min r8
457         c2-min f-min7 g-7^3.5 c-min }
459 \score {
460         \simultaneous {
461 %         \accompaniment
462           \context ChordNames \accompaniment
464           \addlyrics
465             \context Staff = mel {
466               \property Staff.noAutoBeaming = "1"
467               \property Staff.automaticMelismata = "1"
468               \melody 
469             }
470             \context Lyrics \text
471         }
472         \midi  { }
473         \paper { linewidth = 10.0\cm; }
476 Again, we will dissect the file line by line.COMMENT(
478 )verb(
479         \header {
480 )COMMENT(
482 )Information about the music you are about to typeset goes into a
483 code(\header) block.  The information in this block is not used by
484 LilyPond, but it is included in the output.  file(ly2dvi) uses this
485 information to print titles above the music.
486 verb(
487         title = "The river is flowing";
488         composer = "Traditional (?)";)COMMENT(
490 )the code(\header) block contains assignments.  An assignment starts
491 with a string.  (which is unquoted, in this case). Then comes the
492 equal sign `code(=)'.  After the equal sign comes the expression you
493 want to store.  In this case, you want to put in strings.  The
494 information has to be quoted here, because it contains spaces. The
495 assignment is finished with a semicolon.COMMENT(
497 )verb(
498         \include "paper16.ly"
499 )COMMENT(
501 )Smaller size for inclusion in a book.COMMENT(
503 )verb(
504         melody = \notes \relative c' {
505 )COMMENT(
507 )The structure of the file will be the same as the previous one, a
508 code(\score) block with music in it.  To keep things readable, we will
509 give names to the different parts of music, and use the names to
510 construct the music within the score block.
512 verb(
513         \partial 8;
516 The piece starts with an anacrusis of one eighth.  COMMENT(
518 )verb(
519         c4 c8 d [es () d] c4 | f4 f8 g [es() d] c g |
520         c4 c8 d [es () d] c4 | d4 es8 d c4.
521         \bar "|.";
522 )COMMENT(
524 )We use explicit beaming.  Since this is a song,  we will turn automatic
525 beams off, and use explicit beaming where needed.COMMENT(
527 )verb(
528         }
529 )COMMENT(
531 )This ends the definition of code(melody).  Note that there are no
532 semicolons after assignments at top level.COMMENT( 
534 )verb(
535         text = \lyrics {
536 )COMMENT(
538 )Another identifier assignment.  This one is for the lyrics. 
539 Lyrics are formed by syllables that have duration, and not by
540 notes. To make LilyPond parse words as syllables,  switch it  into
541 lyrics mode with code(\lyrics).  Again, the brace after code(\lyrics)
542 is a shorthand for code(\sequential {). COMMENT(
544 )verb(
545         The4 ri -- ver is flo- __ wing,  flo -- wing and gro -- wing, the
546         ri- ver is flo- __ wing down to the sea.
547         }
548 )COMMENT(
550 )The syllables  themselves are  separated by spaces.  You can get syllable
551 extenders by entering `code(__)', and centered hyphens with
552 `code(-)code(-)'.  We enter the syllables as if they are all quarter notes
553 in length (hence the code(4)), and use a feature to align the
554 syllables to the music (which obviously isn't all quarter notes.)
555 COMMENT(
557 )verb(
558         accompaniment =\chords {
559 )COMMENT(
561 )We'll put chords over the music.  There is a special mode (analogous
562 to code(\lyrics) and code(\notes) mode) where you can give the names
563 of the chords you want, instead of the notes comprising the chord.
564 COMMENT(
566 )verb(
567         r8
568 )COMMENT(
570 )There is no accompaniment during the anacrusis.COMMENT(
572 )verb(
573         c2-3- f-3-.7
574 )A chord is started by  the tonic of the chord. The
575 first one lasts a half note.  An unadorned note creates a major
576 triad, while a minor triad is wanted.  code(3-) modifies the third to
577 be small. code(7) modifies (adds) a seventh, which is small by default
578 to create the code(f a c es) chord.  Multiple modifiers must be
579 separated by a dot.COMMENT(
581 )verb(
582         d-min es4 c8-min r8
583 )COMMENT(
585 )Some modifiers have predefined names, eg. code(min) is  the same as
586 code(3-), so code(d-min) is a minor code(d) chord.COMMENT(
588 )verb(
589         c2-min f-min7 g-7^3.5 c-min }
590 )COMMENT(
592 )A named modifier code(min) and a normal modifier code(7) do not have
593 to be separated by a dot.  Tones from a chord are removed with chord
594 subtractions.  Subtractions are started with a caret, and they are
595 also separated by dots.  In this example, code(g-7^3.5) produces a
596 minor seventh.  The brace ends the sequential music. COMMENT(
598 )verb(
599         \score {
600                 \simultaneous {
601 )COMMENT(
603 )We assemble the music in the code(\score) block.  Melody, lyrics and
604 accompaniment have to sound at the same time, so they should be
605 code(\simultaneous).COMMENT(
607 )verb(
608         %\accompaniment
609 )COMMENT(
611 )Chord mode generates notes grouped in code(\simultaneous) music.  If
612 you remove the comment sign, you can see the chords in normal
613 notation: they will be printed as note heads on a separate
614 staff. COMMENT(
616 )verb(
617         \context ChordNames \accompaniment
618 )COMMENT(
620 )Normally, the notes that you enter are transformed into note heads.
621 The note heads alone make no sense, they need surrounding information:
622 a key signature, a clef, staff lines, etc.  They need em(context).  In
623 LilyPond, these symbols are created by objects called `interpretation
624 context'.  Interpretation contexts only exist during a run of
625 LilyPond.  Interpretation contexts that are for printing music (as
626 opposed to playing music) are called `notation context'.
628 By default, LilyPond will create a Staff contexts for you.  If you
629 would remove the code(%) sign in the previous line, you can see that
630 mechanism in action.
633 We don't want default contexts here, because we want names, not note
634 heads.  An interpretation context can also created upon explicit
635 request. The keyword for such a request is code(\context).  It takes
636 two arguments.  The first is the name of a interpretation context.
637 The name is a string, it can be quoted with double quotes).  The
638 second argument is the music that should be interpreted in this
639 context.  For the previous line, we could have written code(\context
640 Staff \accompaniment), and get the same effect.COMMENT(
642 )verb(
643         \addlyrics
644 )COMMENT(
645         
646 )The lyrics need to be aligned with the melody.  This is done by
647 combining both with code(\addlyrics).  code(\addlyrics) takes two
648 pieces of music (usually a melody and lyrics, in that order) and
649 aligns the syllables of the second piece under the notes of the
650 first piece.  If you would reverse the order, the notes would be
651 aligned on the lyrics, which is not very useful. (Besides, it looks
652 silly.)COMMENT(
654 )verb(
655         \context Staff = mel {
656 )COMMENT(
658 )This is the argument of code(\addlyrics).  We instantiate a
659 code(Staff) context explicitly: should you chose to remove comment
660 before the ``note heads'' version of the accompaniment, the
661 accompaniment will be on a nameless staff.  The melody has to be on a
662 different staff as the accompaniment.  This is accomplished by giving
663 the melody staff a different name.COMMENT(
665 )verb(
666         \property Staff.noAutoBeaming = "1"
667 )COMMENT(
669 )An interpretation context has variables that tune its behaviour.  One
670 of the variables is code(noAutoBeaming).  If set and non-zero (i.e.,
671 true) LilyPond will not try to put automatic beaming on the current
672 staff.COMMENT(
674 )verb(
675         \property Staff.automaticMelismata = "1"
676 )COMMENT(
678 )Similarly, we  don't want to print a  syllable when there is
679 a slur. This sets up the Staff context to signal slurs while
680 code(\addlyrics) is processed. COMMENT(
682 )verb(
683           \melody
684         }
685 )COMMENT(
687 )Finally, we put the melody on the current staff.  Note that the
688 code(\property) directives and code(\melody) are grouped in sequential
689 music,  so the property settings are done before the melody is
690 processed.  COMMENT(
692 )verb(
693         \context Lyrics \text
694 )COMMENT(
696 )The second argument of code(\addlyrics) is the text. The text also
697 should not land on a Staff, but on a interpretation context for
698 syllables, extenders, hyphens etc.  This context is called
699 Lyrics.COMMENT(
701 )verb(
702         }
703 )COMMENT(
705 )This ends code(\simultaneous).COMMENT(
707 )verb(
708         \midi  { }
709 )COMMENT(
711 )This makes the music go to a MIDI file.  MIDI is great for
712 checking music you enter.  You listen to the MIDI file: if you hear
713 something unexpected, it's probably a typing error.  code(\midi) is an
714 `output definition', a declaration that specifies how to output music
715 analogous to code(\paper { }).COMMENT(
717 )verb(
718         \paper { linewidth = 10.0\cm; }
719 )COMMENT(
721 )We also want notation output.  The linewidth is short so the piece
722 will be set in two lines. COMMENT(
724 )verb(
725         }
726 )COMMENT(
728 )End the score block.
730 sect(Piano music)
732 Our third subject is a piece piano music.  The fragment in the input
733 file is a piano reduction of the G major Sinfonia by Giovanni Battista
734 Sammartini.  It was composed around 1740. COMMENT(Sesam atlas vd
735 Muziek. Deel II, blz 414)
737 mudela(verbatim)(
738 \include "paper16.ly";
740 viola = \notes \relative c' \context Voice = viola {
741         <c4-\f g' c>
742         \property Voice.verticalDirection = \down g'8. b,16
743         s1 s2. r4
744         g
747 oboes = \notes \relative c'' \context Voice = oboe {
748         \stemup s4  g8. b,16 c8 r <e'8.-\p g> <f16 a>
749         \grace <e8( g> <d4 f> <c2 e> \times 2/3 { <d8 \< f> <e g> <f a> }
750         <
751           { \times 2/3 { a8 g c } \! c2 }
752           \context Voice = oboeTwo {
753                 \stemdown
754                 \grace {
755                     \property Grace.verticalDirection = \down
756                     [f,16 g] }
757                 f8 e e2
758         } >
759         \stemboth
760         \grace <c,8( e> <)b8. d8.-\trill> <c16 e> | 
761         [<d ( f> < )f8. a>] <)b,8 d> r [<d16( f> <f8. )a>] <b,8 d> r  |
762         [<c16( e>  < )e8. g>] <c8 e,>
765 hoomPah  = \notes \transpose c' {
766     c8 \translator Staff = top \stemdown 
767     c'8 \translator Staff = bottom \stemup }
769 hoomPahHoomPah = { [\hoomPah \hoomPah] }
771 bassvoices = \notes \relative c' {
772         c4 g8. b,16
773         \hoomPahHoomPah \hoomPahHoomPah \hoomPahHoomPah \hoomPahHoomPah
774         \stemdown [c8 c'8] r4
775         <g d'> r4
776         < {\stemup r2 <e4 c'> <c8 g'> }
777           \context Voice = reallyLow  {\stemdown g2 ~ | g4 c8 } >
780 \score {
781         \context PianoStaff \notes <
782                 \context Staff = top < \time 2/2;
783                         \context Voice = viola \viola
784                         \oboes
785                 >
786                 \context Staff = bottom < \time 2/2; \clef bass;
787                         \bassvoices
788                 >
789         >
790         \midi { }
791         \paper {
792           indent = 0.0;
793           linewidth = 15.0 \cm; }
796 If it looks like incomprehensible gibberish to you... Then you are
797 right.  The author has doctored this example to have as many quirks in
798 one system as possible.COMMENT(
800 )verb(viola = \notes \relative c'  \context Voice = viola {)COMMENT(
802 )In this example, you can see multiple parts on a staff.  Each part is
803 associated with one notation context.  This notation context handles
804 stems and dynamics (among others).  The name of this context is
805 code(Voice).  For each part we have to make sure that there is
806 precisely one Voice nop(context)footnote(If code(\context) would not
807 have been specified explicitly, three code(Voice) contexts would be
808 created: one for each note  in the first chord.).COMMENT(
810 )verb(<c4-\f g' c>)COMMENT(
812 )code(<) and code(>) are short hands for code(\simultaneous {) and
813 code(}). So the expression enclosed in code(<) and code(>) is a
814 chord.  code(\f) places a forte symbol  under the chord.COMMENT(
816 )verb(\property Voice.verticalDirection = \down)COMMENT(
818 )code(verticalDirection) is a property of the voice context. It
819 controls the directions of stems, articulations marks and other
820 symbols.
821   If code(verticalDirection) is set to code(\down)
822 (identifier for the integer -1) the stems go down,
823 code(\up) (identifier for the integer 1) makes the stems go up.COMMENT(
825 )verb(        g'8. b,16)COMMENT(
827 )Relative octaves work a little differently with chords.  The starting
828 point for the note following a chord is the first note of the chord.  So
829 the code(g) gets an octave up quote: it is a fifth above the starting
830 note of the previous chord (the central C).
832 verb(s1 s2. r4)COMMENT(
834 )code(s) is a `spacer' rest.  It does not print anything,  but it does
835 have the duration of a rest.   COMMENT(
837 )verb(oboes = \notes \relative c'' \context Voice = oboe {)COMMENT(
839 )Now comes a part for two oboes.  They play homophonically, so we
840 print the notes as one voice that makes chords. Again, we insure that
841 these notes are indeed processed by precisely one context with
842 code(\context).COMMENT(
844 )verb(\stemup s4  g8. b,16 c8 r <e'8.-\p g> <f16 a>)COMMENT(
846 )code(\stemup) is an identifier reference.  It is shorthand for
847 code(\property Voice.verticalDirection = \up).  If possible, you
848 should use predefined identifiers like these for setting properties.
849 Your input will be less dependent upon the implementation of LilyPond.
850 COMMENT(
852 )verb(\grace <e8( g> < )d4 f> <c2 e>)COMMENT(
854 )code(\grace) introduces grace notes.  It takes one argument, in this
855 case a chord.  The slur started on the code(e) of the chord
856 will be attached to the next nop(note.)footnote(LilyPond will squirm
857 about unended Slurs.  In this case, you can ignore the warning).
858 COMMENT(
860 )verb(\times 2/3)COMMENT(
862 )Tuplets are made with the code(\times) keyword.  It takes two
863 arguments: a fraction and a piece of music.  The duration of the
864 second argument is multiplied by the first argument.  Triplets make
865 notes occupy 2/3 of their notated duration, so in this case the
866 fraction is 2/3. COMMENT(
868 )verb({ <d8 \< f> <e g> <f a> })COMMENT(
870 )The piece of music to be `tripletted' is sequential music containing
871 three notes.  On the first chord (the code(d)), a crescendo is started
872 with code(\<).COMMENT(
874 )verb(<)COMMENT(
876 )At this point, the homophonic music splits into two rhythmically
877 different parts.  We can't use a sequence of chords to enter this, so
878 we make a `chord' of sequences to do it.  We start with the upper
879 voice, which continues with upward stems: COMMENT(
881 )verb( { \times 2/3 { a8 g c } \! c2 })COMMENT(
883 )The crescendo is ended at the half note by the escaped exclamation
884 mark `code(\!)'.  COMMENT(
885          
886 )verb(\context Voice = oboeTwo {
887 \stemdown)COMMENT(
889 )We can't share stems with the other voice, so we have to create a new
890 code(Voice) context.  We give it the name code(oboeTwo) to distinguish
891 it from the other context.  Stems go down in this voice. COMMENT(
893 )verb(\grace { )COMMENT(
895 )When a grace section is processed, a code(Grace) context is
896 created. This context acts like a miniature score of its own.  It has
897 its own time bookkeeping, and you can make notes, beams, slurs
898 etc. Here fiddle with a property and make a beam.  The argument of
899 code(\grace) is sequential music.COMMENT(
901 )verb(\property Grace.verticalDirection = \down
902 [f,16 g] })COMMENT(
904 )Normally, grace notes are always stem up, but in this case, the upper
905 voice interferes. We set the stems down here.
907 As far as relative mode is concerned, the previous note is the
908 code(c'''2) of the upper voice, so we have to go an octave down for
909 the code(f).
910 COMMENT(
912 )verb(
913   f8 e e2
914 } >)COMMENT(
916 )This ends the two-part section. COMMENT(
918 )verb(\stemboth
919 \grace <c,8( e> <)b8. d8.-\trill> <c16 e> | )COMMENT(
921 )code(\stemboth) ends the forced stem directions. From here, stems are
922 positioned as if it were single part music.
924 The bass has a little hoom-pah melody to demonstrate parts switching
925 between staffs.  Since it is repetitive, we use identifiers:COMMENT(
927 )verb(hoomPah  = \notes \transpose c' {)COMMENT(
929 )Transposing can be done with code(\transpose).  It takes two
930 arguments; the first specifies what central C should be transposed to.
931 The second is the to-be-transposed music.  As you can see, in this
932 case, the transposition is a no-op.  Central C is transposed to
933 central C.
935 The purpose of this no-op is circumventing relative mode.  Relative
936 mode can not be used in conjunction with transposition, so relative
937 mode will leave the contents of code(\hoomPah) alone.  We can use it
938 without having to worry about getting the motive in a wrong
939 nop(octave)footnote(code(hoomPah = \relative ...) would be more
940 intuitive to use, but that would not let me plug code(\transpose)
941 :-CHAR(41).).COMMENT(
943 )verb(c8 \translator Staff = top \stemdown )COMMENT(
945 )We assume that the first note will be put in the lower staff.  After
946 that note we switch to the upper staff with code(\translator).  To be
947 precise, this code(\translator) entry switches the current voice to a
948 code(Staff) named code(top). So we have to name the upper staff
949 `code(top)'.  Stem directions are set to avoid interfering with the
950 oboe voices.  COMMENT(
952 )verb(c'8 \translator Staff = bottom \stemup })COMMENT(
954 )Then a note is put on the upper staff, and we switch again.  We have
955 to name the lower staff `code(bottom)'. COMMENT(
957 )verb(hoomPahHoomPah = { [\hoomPah \hoomPah] })COMMENT(
959 )Put two of these fragments in sequence, and beam them.COMMENT(
961 )verb(bassvoices = \notes \relative c' {
962 c4 g8. b,16
963 \hoomPahHoomPah \hoomPahHoomPah \hoomPahHoomPah
964 \hoomPahHoomPah)COMMENT(
966 )Entering the bass part is easy: the hoomPahHoomPah variable is
967 referenced four times.COMMENT(
969 )verb(\context Voice = reallyLow  {\stemdown g2 ~ | g4 c8 } >)COMMENT(
971 )After skipping some lines, we see code(~).  This mark makes ties.COMMENT(
973 )verb(\context PianoStaff)COMMENT(
975 )For piano music, a special context is needed to get cross staff
976 beaming right.  It is called code(PianoStaff).COMMENT(
978 )verb(\context Staff = bottom < \time 2/2; \clef bass;)COMMENT(
980 )The bottom staff must have a different clef.COMMENT(
982 )verb(indent = 0.0;)COMMENT(
984 )To make some more room on the line, the first (in this case the only)
985 line is not indented.  The line still looks is very cramped, but that is due
986 to the format of this tutorial.
988 This example shows a lot of features, but the organisation isn't
989 perfect.  For example, it would be less confusing to use a chord
990 containing sequential music than a sequence of chords for the oboe
991 parts.
993 [TODO: demonstrate Hara-Kiri with scores and  part extraction.]
995 sect(The end)        
996          
997 That's all folks.  From here, you can either try fiddling with input
998 files, or you can read the reference manual.