]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/putting.itely
Add @cindex entries for variables and identifiers.
[lilypond.git] / Documentation / user / putting.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @node Putting it all together
3 @chapter Putting it all together
4
5 This chapter discusses general LilyPond concepts and how to
6 create @code{\score} blocks.
7
8
9 @menu
10 * Extending the templates::     
11 * How LilyPond files work::     
12 * Score is a single musical expression::  
13 @end menu
14
15
16 @node Extending the templates
17 @section Extending the templates
18
19 You've read the tutorial, you know how to write music.  But how can you
20 get the staves that you want?  The templates are ok, but what if you
21 want something that isn't covered?
22
23 Start off with the template that seems closest to what you want to end
24 up with.  Let's say that you want to write something for soprano and
25 cello.  In this case, we would start with ``Notes and lyrics'' (for the
26 soprano part).
27
28 @example
29 \version "2.9.13"
30 melody = \relative c' @{
31   \clef treble
32   \key c \major
33   \time 4/4
34
35   a4 b c d
36 @}
37
38 text = \lyricmode @{
39   Aaa Bee Cee Dee
40 @}
41
42 \score@{
43   <<
44     \new Voice = "one" @{
45       \autoBeamOff
46       \melody
47     @}
48     \new Lyrics \lyricsto "one" \text
49   >>
50   \layout @{ @}
51   \midi @{ @}
52 @}
53 @end example
54
55 Now we want to add a cello part.  Let's look at the ``Notes only'' example:
56
57 @example
58 \version "2.9.13"
59 melody = \relative c' @{
60   \clef treble
61   \key c \major
62   \time 4/4
63
64   a4 b c d
65 @}
66
67 \score @{
68 \new Staff \melody
69 \layout @{ @}
70 \midi @{ @}
71 @}
72 @end example
73
74 We don't need two @code{\version} commands.  We'll need the @code{melody}
75 section.  We don't want two @code{\score} sections -- if we had two
76 @code{\score}s, we'd get the two parts separately.  We want them together,
77 as a duet.  Within the @code{\score} section, we don't need two
78 @code{\layout} or @code{\midi}.
79
80 If we simply cut and paste the @code{melody} section, we would end up with
81 two @code{melody} sections.  So let's rename them.  We'll call the section
82 for the soprano @code{sopranoMusic} and the section for the cello
83 @code{celloMusic}.  While we're doing this, let's rename @code{text}
84 to be @code{sopranoLyrics}.  Remember to rename both instances of all
85 these names -- both the initial definition (the
86 @code{melody = relative c' @{ } part) and the name's use (in the
87 @code{\score} section).
88
89 While we're doing this, let's change the cello part's staff -- celli
90 normally use bass clef.  We'll also give the cello some different
91 notes.
92
93 @example
94 \version "2.9.13"
95 sopranoMusic = \relative c' @{
96   \clef treble
97   \key c \major
98   \time 4/4
99
100   a4 b c d
101 @}
102
103 sopranoLyrics = \lyricmode @{
104   Aaa Bee Cee Dee
105 @}
106
107 celloMusic = \relative c @{
108   \clef bass
109   \key c \major
110   \time 4/4
111
112   d4 g fis8 e d4
113 @}
114
115 \score@{
116   <<
117     \new Voice = "one" @{
118       \autoBeamOff
119       \sopranoMusic
120     @}
121     \new Lyrics \lyricsto "one" \sopranoLyrics
122   >>
123   \layout @{ @}
124   \midi @{ @}
125 @}
126 @end example
127
128 This is looking promising, but the cello part won't appear in the
129 score -- we haven't used it in the @code{\score} section.  If we
130 want the cello part to appear under the soprano part, we need to add
131
132 @example
133 \new Staff \celloMusic
134 @end example
135
136 @noindent
137 underneath the soprano stuff.  We also need to add @code{<<} and
138 @code{>>} around the music -- that tells LilyPond that there's
139 more than one thing (in this case, @code{Staff}) happening at once.  The
140 @code{\score} looks like this now
141
142 @example
143 \score@{
144   <<
145     <<
146       \new Voice = "one" @{
147         \autoBeamOff
148         \sopranoMusic
149       @}
150       \new Lyrics \lyricsto "one" \sopranoLyrics
151     >>
152     \new Staff \celloMusic
153   >>
154   \layout @{ @}
155   \midi @{ @}
156 @}
157 @end example
158
159 @noindent
160 This looks a bit messy; the indentation is messed up now.  That is
161 easily fixed.  Here's the complete soprano and cello template.
162
163 @lilypond[quote,verbatim,ragged-right]
164 \version "2.9.13"
165 sopranoMusic = \relative c' {
166   \clef treble
167   \key c \major
168   \time 4/4
169
170   a4 b c d
171 }
172
173 sopranoLyrics = \lyricmode {
174   Aaa Bee Cee Dee
175 }
176
177 celloMusic = \relative c {
178   \clef bass
179   \key c \major
180   \time 4/4
181
182   d4 g fis8 e d4
183 }
184
185 \score{
186   <<
187     <<
188       \new Voice = "one" {
189         \autoBeamOff
190         \sopranoMusic
191       }
192       \new Lyrics \lyricsto "one" \sopranoLyrics
193     >>
194     \new Staff \celloMusic
195   >>
196   \layout { }
197   \midi { }
198 }
199 @end lilypond
200
201
202
203 @node How LilyPond files work
204 @section How LilyPond files work
205
206 The LilyPond input format is quite free-form, giving experienced
207 users a lot of flexibility to structure their files however they
208 wish.  However, this flexibility can make things confusing for
209 new users.  This section will explain some of this structure, but
210 may gloss over some details in favor of simplicity.  For a complete
211 description of the input format, see @ref{File structure}.
212
213 Most examples in this manual are little snippets -- for example
214
215 @example
216 c4 a b c
217 @end example
218
219 As you are (hopefully) aware by now, this will not compile by
220 itself.  These examples are shorthand for complete
221 examples.  They all need at least curly braces to compile
222
223 @example
224 @{
225   c4 a b c
226 @}
227 @end example
228
229 Most examples also make use of the @code{\relative c'}
230 (or @code{c''}) command.  This is not necessary to merely
231 compile the examples, but in most cases the output will
232 look very odd if you omit the @code{\relative c'}.
233
234 @lilypond[quote,fragment,ragged-right,verbatim]
235 \relative c'' {
236   c4 a b c
237 }
238 @end lilypond
239
240 Now we get to the only real stumbling block: LilyPond
241 input in this form is actually @emph{another}
242 shorthand.  Although it compiles and displays the
243 correct output, it is shorthand for
244
245 @example
246 \score @{
247   \relative c'' @{
248     c4 a b c
249   @}
250 @}
251 @end example
252
253 A @code{\score} must begin with a single music
254 expression.  Remember that a music expression could
255 be anything from a single note to a huge
256
257 @example
258 @{
259   \new GrandStaff <<
260     insert the whole score of a Wagner opera in here
261   >>
262 @}
263 @end example
264
265 @noindent
266 Since everything is inside @code{@{ ... @}}, it counts
267 as one music expression.
268
269 The @code{\score} can contain other things, such as
270
271 @example
272 \score @{
273   @{ c'4 a b c' @}
274   \layout @{ @}
275   \midi @{ @}
276   \header @{ @}
277 @}
278 @end example
279
280 @noindent
281 Some people put some of those commands outside the
282 @code{\score} block -- for example, @code{\header} is
283 often placed above the @code{\score}.  That's just
284 another shorthand that LilyPond accepts.
285
286 @cindex variables
287 @cindex indentifiers
288
289 Another great shorthand is the ability to define
290 variables.  All the templates use this
291
292 @example
293 melody = \relative c' @{
294   c4 a b c
295 @}
296
297 \score @{
298   @{ \melody @}
299 @}
300 @end example
301
302 When LilyPond looks at this file, it takes the value of
303 @code{melody} (everything after the equals sign) and
304 inserts it whenever it sees
305 @code{\melody}.  There's nothing special about the
306 names -- it could be @code{melody}, @code{global},
307 @code{pianorighthand}, or @code{foofoobarbaz}.  You
308 can use whatever variable names you want.  For
309 more details, see
310 @ref{Saving typing with identifiers and functions}.
311
312 For a complete definition
313 of the input format, see @ref{File structure}.
314
315
316 @node Score is a single musical expression
317 @section Score is a single musical expression
318
319 In the previous section, @ref{How LilyPond files work},
320 we saw the general organization of LilyPond input
321 files.  But we seemed to skip over the most important
322 part: how do we figure out what to write after
323 @code{\score}?
324
325 We didn't skip over it at all.  The big mystery is simply
326 that there @emph{is} no mystery.  This line explains it
327 all:
328
329 @quotation
330 @emph{A @code{\score} must begin with a single music expression.}
331 @end quotation
332
333 @noindent
334 You may find it useful to review
335 @ref{Music expressions explained}.  In that section, we
336 saw how to build big music expressions from small
337 pieces -- we started from notes, then chords, etc.  Now
338 we're going to start from a big music expression and
339 work our way down.
340
341 @example
342 \score @{
343   @{   % this brace begins the overall music expression
344     \new GrandStaff <<
345       insert the whole score of a Wagner opera in here
346     >>
347   @}   % this brace ends the overall music expression
348   \layout @{ @}
349 @}
350 @end example
351
352 A whole Wagner opera would easily double the length of
353 this manual, so let's just do a singer and piano.  We
354 don't need a @code{GrandStaff} for this ensemble, so we
355 shall remove it.  We @emph{do} need a singer and a piano,
356 though.
357
358 @example
359 \score @{
360   @{
361     <<
362       \new Staff = "singer" <<
363       >>
364       \new PianoStaff = piano <<
365       >>
366     >>
367   @}
368   \layout @{ @}
369 @}
370 @end example
371
372 Remember that we use @code{<<} and @code{>>} to show
373 simultaneous music.  And we definitely want to show
374 the vocal part and piano part at the same time!
375
376 @example
377 \score @{
378   @{
379     <<
380       \new Staff = "singer" <<
381         \new Voice = "vocal" @{ @}
382       >>
383       \new Lyrics \lyricsto vocal \new Lyrics @{ @}
384       \new PianoStaff = "piano" <<
385         \new Staff = "upper" @{ @}
386         \new Staff = "lower" @{ @}
387       >>
388     >>
389   @}
390   \layout @{ @}
391 @}
392 @end example
393
394 Now we have a lot more details.  We have the singer's
395 staff: it contains a @code{Voice} (in LilyPond, this
396 term refers to a set of notes, not necessarily vocal
397 notes -- for example, a violin generally plays one
398 voice) and some lyrics.  We also have a piano staff:
399 it contains an upper staff (right hand) and a lower
400 staff (left hand).
401
402 At this stage, we could start filling in notes.  Inside
403 the curly braces next to @code{\new Voice = vocal},
404 we could start writing
405
406 @example
407 \relative c'' @{
408   a4 b c d
409 @}
410 @end example
411
412 But if we did that, the @code{\score} section would
413 get pretty long, and it would be harder to understand
414 what was happening.  So let's use identifiers (or
415 variables) instead.
416
417 @example
418 melody = @{ @}
419 text = @{ @}
420 upper = @{ @}
421 lower = @{ @}
422 \score @{
423   @{
424     <<
425       \new Staff = "singer" <<
426         \new Voice = "vocal" @{ \melody @}
427       >>
428       \new Lyrics \lyricsto vocal \new Lyrics @{ \text @}
429       \new PianoStaff = "piano" <<
430         \new Staff = "upper" @{ \upper @}
431         \new Staff = "lower" @{ \lower @}
432       >>
433     >>
434   @}
435   \layout @{ @}
436 @}
437 @end example
438
439 @noindent
440 Remember that you can use almost any name you like.  The
441 limitations on identifier names are detailed in
442 @ref{File structure}.
443
444 When writing a @code{\score} section, or when reading
445 one, just take it slowly and carefully.  Start with
446 the outer layer, then work on each smaller
447 layer.  It also really helps to be strict with
448 indentation -- make sure that each item on the same
449 layer starts on the same horizontal position in your
450 text editor!
451
452