]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/staff.itely
Docs: Update for staff.itely
[lilypond.git] / Documentation / user / staff.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @ignore
3     Translation of GIT committish: FILL-IN-HEAD-COMMITTISH
4
5     When revising a translation, copy the HEAD committish of the
6     version that you are working on.  See TRANSLATION for details.
7 @end ignore
8
9 @c \version "2.11.61"
10
11 @node Staff notation
12 @section Staff notation
13
14 @lilypondfile[quote]{staff-headword.ly}
15
16 This section explains how to influence the staff appearance, print
17 scores with more than one staff, and how to apply specific
18 performance marks to single staves.
19
20 @menu
21 * Displaying staves::
22 * Modifying single staves::
23 * Writing parts::
24 @end menu
25
26
27 @node Displaying staves
28 @subsection Displaying staves
29
30 This section describes the different methods of creating and
31 grouping staves, which are marked at the beginning of each line
32 with either a bracket or a brace.
33
34 @menu
35 * Instantiating new staves::
36 * Grouping staves::
37 * Nested staff groups::
38 @end menu
39
40
41 @node Instantiating new staves
42 @unnumberedsubsubsec Instantiating new staves
43
44 @cindex new staff
45 @cindex staff initiation
46 @cindex staff instantiation
47 @cindex staff, new
48 @cindex staff, single
49 @cindex drum staff
50 @cindex percussion staff
51 @cindex Gregorian transcription staff
52 @cindex rhythmic staff
53 @cindex tabstaff
54 @cindex tablature
55
56 @notation{Staves} (singular: @notation{staff}) are created with
57 the @code{\new} or @code{\context} commands.  For details, see
58 @ref{Creating contexts}.
59
60 The basic staff context is @code{Staff}:
61
62 @lilypond[verbatim,quote,relative=2]
63 \new Staff { c4 d e f }
64 @end lilypond
65
66 @code{DrumStaff} creates a five-line staff set up for a
67 typical drum set.  It uses different names for each instrument.
68 The instrument names are set using the @code{\drummode} command.
69 For details, see @ref{Percussion staves}.
70
71 @lilypond[verbatim,quote]
72 \new DrumStaff {
73   \drummode { cymc hh ss tomh }
74 }
75 @end lilypond
76
77 @c FIXME: remove when mentioned in NR 2.8
78 @code{GregorianTranscriptionStaff} creates a staff to notate
79 modern Gregorian chant.  It does not show bar lines.
80
81 @lilypond[verbatim,quote,relative=2]
82 \new GregorianTranscriptionStaff { c4 d e f }
83 @end lilypond
84
85 @code{RhythmicStaff} creates a single-line staff that only
86 displays the rhythmic values of the input.  Real durations are
87 preserved. For details, see @ref{Showing melody rhythms}.
88
89 @lilypond[verbatim,quote,relative=2]
90 \new RhythmicStaff { c4 d e f }
91 @end lilypond
92
93 @code{TabStaff} creates a tablature with six strings in standard
94 guitar tuning.  For details, see @ref{Default tablatures}.
95
96 @lilypond[verbatim,quote,relative=2]
97 \new TabStaff { c4 d e f }
98 @end lilypond
99
100 There are two staff contexts specific for the notation of ancient
101 music: @code{MensuralStaff} and @code{VaticanaStaff}.  They are
102 described in @ref{Pre-defined contexts}.
103
104 New single staff contexts may be defined.  For details, see
105 @ref{Defining new contexts}.
106
107
108 @seealso
109
110 Music Glossary:
111 @rglos{staff},
112 @rglos{staves}.
113
114 Notation Reference:
115 @ref{Creating contexts},
116 @ref{Percussion staves},
117 @ref{Showing melody rhythms},
118 @ref{Default tablatures},
119 @ref{Pre-defined contexts},
120 @ref{Staff symbol},
121 @ref{Gregorian chant contexts},
122 @ref{Mensural contexts},
123 @ref{Defining new contexts}.
124
125 Snippets:
126 @rlsr{Staff notation}.
127
128 Internals Reference:
129 @rinternals{Staff},
130 @rinternals{DrumStaff},
131 @rinternals{GregorianTranscriptionStaff},
132 @rinternals{RhythmicStaff},
133 @rinternals{TabStaff},
134 @rinternals{MensuralStaff},
135 @rinternals{VaticanaStaff},
136 @rinternals{StaffSymbol}.
137
138
139 @node Grouping staves
140 @unnumberedsubsubsec Grouping staves
141
142 @cindex start of system
143 @cindex staff, multiple
144 @cindex staves, multiple
145 @cindex system start delimiters
146 @cindex bracket, vertical
147 @cindex brace, vertical
148 @cindex choir staff
149 @cindex grand staff
150 @cindex piano staff
151 @cindex staff group
152 @cindex staff, choir
153 @cindex staff, piano
154 @cindex system
155
156 Various contexts exist to group single staves together in order to
157 form multi-stave systems.  Each grouping context sets the style of
158 the system start delimiter and the behavior of bar lines.
159
160 If no context is specified, the default properties will be used:
161 the group is started with a vertical line, and the bar lines are
162 not connected.
163
164 @lilypond[verbatim,quote,relative=2]
165 <<
166   \new Staff { c1 c }
167   \new Staff { c1 c }
168 >>
169 @end lilypond
170
171 In the @code{StaffGroup} context, the group is started with a
172 bracket and bar lines are drawn through all the staves.
173
174 @lilypond[verbatim,quote,relative=2]
175 \new StaffGroup <<
176   \new Staff { c1 c }
177   \new Staff { c1 c }
178 >>
179 @end lilypond
180
181 In a @code{ChoirStaff}, the group starts with a bracket, but bar
182 lines are not connected.
183
184 @lilypond[verbatim,quote,relative=2]
185 \new ChoirStaff <<
186   \new Staff { c1 c }
187   \new Staff { c1 c }
188 >>
189 @end lilypond
190
191 In a @code{GrandStaff}, the group begins with a brace, and bar
192 lines are connected between the staves.
193
194 @lilypond[verbatim,quote,relative=2]
195 \new GrandStaff <<
196   \new Staff { c1 c }
197   \new Staff { c1 c }
198 >>
199 @end lilypond
200
201 The @code{PianoStaff} is identical to a @code{GrandStaff}, except
202 that it supports printing the instrument name directly.  For
203 details, see @ref{Instrument names}.
204
205 @lilypond[verbatim,quote,relative=2]
206 \new PianoStaff <<
207   \set PianoStaff.instrumentName = "Piano"
208   \new Staff { c1 c }
209   \new Staff { c1 c }
210 >>
211 @end lilypond
212
213 Each staff group context sets the property
214 @code{systemStartDelimiter} to one of the following values:
215 @code{SystemStartBar}, @code{SystemStartBrace}, or
216 @code{SystemStartBracket}.  A fourth delimiter,
217 @code{SystemStartSquare}, is also available, but it must be
218 explicitly specified.
219
220 New staff group contexts may be defined.  For details, see
221 @ref{Defining new contexts}.
222
223
224 @snippets
225
226 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
227 {use-square-bracket-at-the-start-of-a-staff-group.ly}
228
229 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
230 {display-bracket-with-only-one-staff-in-a-system.ly}
231
232 @cindex mensurstriche layout
233 @cindex renaissance music
234 @cindex transcription of mensural music
235 @cindex mensural music, transcription of
236
237 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
238 {mensurstriche-layout-bar-lines-between-the-staves.ly}
239 @c FIXME: move to NR 2.8.x when sectioning is ready
240
241
242 @seealso
243
244 Music Glossary:
245 @rglos{brace},
246 @rglos{bracket},
247 @rglos{grand staff}.
248
249 Notation Reference:
250 @ref{Instrument names},
251 @ref{Defining new contexts}.
252
253 Snippets:
254 @rlsr{Staff notation}.
255
256 Internals Reference:
257 @rinternals{Staff},
258 @rinternals{StaffGroup},
259 @rinternals{ChoirStaff},
260 @rinternals{GrandStaff},
261 @rinternals{PianoStaff},
262 @rinternals{SystemStartBar},
263 @rinternals{SystemStartBrace},
264 @rinternals{SystemStartBracket},
265 @rinternals{SystemStartSquare}.
266
267
268 @node Nested staff groups
269 @unnumberedsubsubsec Nested staff groups
270
271 @cindex staff, nested
272 @cindex staves, nested
273 @cindex nesting of staves
274 @cindex system start delimiters, nested
275 @cindex nested staff brackets
276 @cindex brackets, nesting of
277 @cindex braces, nesting of
278 @cindex inner staff group
279 @cindex inner choir staff group
280
281 Two additional staff-group contexts are available that can be
282 nested within a @code{StaffGroup} or @code{ChoirStaff} context:
283 @code{InnerStaffGroup} and @code{InnerChoirStaff}.  These contexts
284 create a new bracket adjacent to the bracket of their parent staff
285 group.
286
287 An @code{InnerStaffGroup} is treated similarly to a
288 @code{StaffGroup}; bar lines are connected between each staff
289 within the context:
290
291 @lilypond[verbatim,quote,relative=2]
292 \new StaffGroup <<
293   \new Staff { c2 c | c2 c }
294   \new InnerStaffGroup <<
295     \new Staff { g2 g | g2 g }
296     \new Staff { e2 e | e2 e }
297   >>
298 >>
299 @end lilypond
300
301 Bar lines are @emph{not} connected between staves of an
302 @code{InnerChoirStaff}, just like a @code{ChoirStaff}:
303
304 @lilypond[verbatim,quote,relative=2]
305 \new ChoirStaff <<
306   \new Staff { c2 c | c2 c }
307   \new InnerChoirStaff <<
308     \new Staff { g2 g | g2 g }
309     \new Staff { e2 e | e2 e }
310   >>
311   \new Staff { c1 | c1 }
312 >>
313 @end lilypond
314
315 New nested staff group contexts can be defined.  For details, see
316 @ref{Defining new contexts}.
317
318
319 @snippets
320
321 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
322 {nesting-staves.ly}
323
324
325 @seealso
326
327 Notation Reference:
328 @ref{Grouping staves},
329 @ref{Instrument names},
330 @ref{Defining new contexts}.
331
332 Snippets:
333 @rlsr{Staff notation}.
334
335 Internals Reference:
336 @rinternals{InnerStaffGroup},
337 @rinternals{StaffGroup},
338 @rinternals{InnerChoirStaff},
339 @rinternals{ChoirStaff},
340 @rinternals{SystemStartBar},
341 @rinternals{SystemStartBrace},
342 @rinternals{SystemStartBracket},
343 @rinternals{SystemStartSquare}.
344
345
346 @node Modifying single staves
347 @subsection Modifying single staves
348
349 This section explains how to change specific attributes of one
350 staff: for example, modifying the number of staff lines or the
351 staff size.  Methods to start and stop staves and set ossia
352 sections are also described.
353
354 @menu
355 * Staff symbol::
356 * Ossia staves::
357 * Hiding staves::
358 @end menu
359
360
361 @node Staff symbol
362 @unnumberedsubsubsec Staff symbol
363
364 @cindex adjusting staff symbol
365 @cindex drawing staff symbol
366 @cindex staff symbol, setting of
367 @cindex stop staff lines
368 @cindex start staff lines
369 @cindex staff lines, amount of
370 @cindex staff lines, number of
371 @cindex staff line, thickness of
372 @cindex amount of staff lines
373 @cindex thickness of staff lines
374 @cindex ledger lines, setting
375 @cindex setting of ledger lines
376 @cindex spacing of ledger lines
377 @cindex number of staff lines
378
379 The lines of a staff belong to the @code{StaffSymbol} grob.
380 @code{StaffSymbol} properties can be modified to change the
381 appearance of a staff, but they must be modified before the staff
382 is created.
383
384 The number of staff lines may be changed.  The clef position and
385 the position of middle C may need to be modified to fit the new
386 staff.  For an explanation, refer to the snippet section in
387 @ref{Clef}.
388
389 @lilypond[verbatim,quote,relative=2]
390 \new Staff \with {
391   \override StaffSymbol #'line-count = #3
392 }
393 { d4 d d d }
394 @end lilypond
395
396 The vertical position of staff lines and the number of staff lines
397 can be defined at the same time.  As the following example shows,
398 note positions are not influenced by the staff line positions.
399
400 @warning{The @code{'line-positions} property overrides the
401 @code{'line-count} property.  The number of staff lines is
402 implicitly defined by the number of elements in the list of values
403 for @code{'line-positions}.}
404
405 @lilypond[verbatim,quote,relative=1]
406 \new Staff \with {
407   \override StaffSymbol #'line-positions = #'(7 3 0 -4 -6 -7)
408 }
409 { a4 e' f b | d1 }
410 @end lilypond
411
412 Staff line thickness can be modified.  The thickness of ledger
413 lines and stems are also affected, since they depend on staff line
414 thickness.
415
416 @lilypond[verbatim,quote,relative=1]
417 \new Staff \with {
418   \override StaffSymbol #'thickness = #3
419 }
420 { e4 d c b }
421 @end lilypond
422
423 Ledger line thickness can be set independently of staff line
424 thickness.
425
426 @lilypond[verbatim,quote,relative=1]
427 \new Staff \with {
428   \override StaffSymbol #'ledger-line-thickness = #'(1 . 0.2)
429 }
430 { e4 d c b }
431 @end lilypond
432
433 The distance between staff lines can be changed.  This setting
434 affects the spacing of ledger lines as well.
435
436 @lilypond[verbatim,quote,relative=1]
437 \new Staff \with {
438   \override StaffSymbol #'staff-space = #1.5
439 }
440 { a4 b c d }
441 @end lilypond
442
443 The width of a staff can be modified.  The units are staff
444 spaces.  The spacing of objects inside the staff is not affected by
445 this setting.
446
447 @lilypond[verbatim,quote,relative=1]
448 \new Staff \with {
449   \override StaffSymbol #'width = #23
450 }
451 { a4 e' f b | d1 }
452 @end lilypond
453
454 Further details about the properties of @code{StaffSymbol} can be
455 found in @rinternals{staff-symbol-interface}.
456
457 @funindex \startStaff
458 @funindex \stopStaff
459
460 Modifications to staff properties in the middle of a score can be
461 placed between @code{\stopStaff} and @code{\startStaff}:
462
463 @lilypond[verbatim,quote,relative=2]
464 c2 c
465 \stopStaff
466 \override Staff.StaffSymbol #'line-count = #2
467 \startStaff
468 b2 b
469 \stopStaff
470 \revert Staff.StaffSymbol #'line-count
471 \startStaff
472 a2 a
473 @end lilypond
474
475 @cindex stopping a staff
476
477 @noindent
478 In general, @code{\startStaff} and @code{\stopStaff} can be used
479 to stop or start a staff in the middle of a score.
480
481 @lilypond[verbatim,quote,relative=2]
482 c4 b a2
483 \stopStaff
484 b4 c d2
485 \startStaff
486 e4 d c2
487 @end lilypond
488
489
490 @predefined
491
492 @code{\startStaff},
493 @code{\stopStaff}.
494
495
496 @snippets
497
498 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
499 {making-some-staff-lines-thicker-than-the-others.ly}
500
501
502 @seealso
503
504 Music Glossary:
505 @rglos{line},
506 @rglos{ledger line},
507 @rglos{staff}.
508
509 Notation Reference:
510 @ref{Clef}.
511
512 Snippets:
513 @rlsr{Staff notation}.
514
515 Internals Reference:
516 @rinternals{StaffSymbol},
517 @rinternals{staff-symbol-interface}.
518
519
520 @knownissues
521
522 When setting vertical staff line positions manually, bar lines are
523 always centered on position 0, so the maximum distance between the
524 outermost bar lines in either direction must be equal.
525
526
527 @node Ossia staves
528 @unnumberedsubsubsec Ossia staves
529
530 @cindex staff, Frenched
531 @cindex ossia
532 @cindex Frenched staves
533 @cindex staff, resizing of
534 @cindex resizing of staves
535
536 @notation{Ossia} staves can be set by creating a new simultaneous
537 staff in the appropriate location:
538
539 @lilypond[verbatim,quote]
540 \new Staff \relative c'' {
541   c4 b d c
542   <<
543     { c4 b d c }
544     \new Staff { e4 d f e }
545   >>
546   c4 b c2
547 }
548 @end lilypond
549
550 @noindent
551 However, the above example is usually not the desired result.  To
552 create ossia staves that are above the original staff, have no
553 time signature or clef, and have a smaller font size, tweaks must
554 be used.  The Learning Manual describes a specific technique to
555 achieve this goal, beginning with
556 @rlearning{Nesting music expressions}.
557
558 The following example uses the @code{alignAboveContext} property
559 to align the ossia staff.  This method is most appropriate when
560 only a few ossia staves are needed.
561
562 @lilypond[verbatim,quote]
563 \new Staff = main \relative c'' {
564   c4 b d c
565   <<
566     { c4 b d c }
567
568     \new Staff \with {
569       \remove "Time_signature_engraver"
570       alignAboveContext = #"main"
571       fontSize = #-3
572       \override StaffSymbol #'staff-space = #(magstep -3)
573       \override StaffSymbol #'thickness = #(magstep -3)
574       firstClef = ##f
575     }
576     { e4 d f e }
577   >>
578   c4 b c2
579 }
580 @end lilypond
581
582 If many isolated ossia staves are needed, creating an empty
583 @code{Staff} context with a specific @emph{context id} may be more
584 appropriate; the ossia staves may then be created by
585 @emph{calling} this context and using @code{\startStaff} and
586 @code{\stopStaff} at the desired locations.  The benefits of this
587 method are more apparent if the piece is longer than the following
588 example.
589
590 @lilypond[verbatim,quote,ragged-right]
591 <<
592   \new Staff = ossia \with {
593     \remove "Time_signature_engraver"
594     \override Clef #'transparent = ##t
595     fontSize = #-3
596     \override StaffSymbol #'staff-space = #(magstep -3)
597     \override StaffSymbol #'thickness = #(magstep -3)
598   }
599   { \stopStaff s1*6 }
600
601   \new Staff \relative c' {
602     c4 b c2
603     <<
604       { e4 f e2 }
605       \context Staff = ossia {
606         \startStaff e4 g8 f e2 \stopStaff
607       }
608     >>
609     g4 a g2 \break
610     c4 b c2
611     <<
612       { g4 a g2 }
613       \context Staff = ossia {
614         \startStaff g4 e8 f g2 \stopStaff
615       }
616     >>
617     e4 d c2
618   }
619 >>
620 @end lilypond
621
622 Using the @code{\RemoveEmptyStaffContext} command to create ossia
623 staves may be used as an alternative.  This method is most
624 convenient when ossia staves occur immediately following a line
625 break.  In this case, spacer rests do not need to be used at all;
626 only @code{\startStaff} and @code{\stopStaff} are necessary.  For
627 more information about @code{\RemoveEmptyStaffContext}, see
628 @ref{Hiding staves}.
629
630 @lilypond[verbatim,quote,ragged-right]
631 <<
632   \new Staff = ossia \with {
633     \remove "Time_signature_engraver"
634     \override Clef #'transparent = ##t
635     fontSize = #-3
636     \override StaffSymbol #'staff-space = #(magstep -3)
637     \override StaffSymbol #'thickness = #(magstep -3)
638   }
639   \new Staff \relative c' {
640     c4 b c2
641     e4 f e2
642     g4 a g2 \break
643     <<
644       { c4 b c2 }
645       \context Staff = ossia {
646         c4 e8 d c2 \stopStaff
647       }
648     >>
649     g4 a g2
650     e4 d c2
651   }
652 >>
653
654 \layout {
655   \context {
656     \RemoveEmptyStaffContext
657     \override VerticalAxisGroup #'remove-first = ##t
658   }
659 }
660 @end lilypond
661
662
663 @snippets
664
665 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
666 {vertically-aligning-ossias-and-lyrics.ly}
667
668
669 @seealso
670
671 Music Glossary:
672 @rglos{ossia},
673 @rglos{staff},
674 @rglos{Frenched staff}.
675
676 Learning Manual:
677 @rlearning{Nesting music expressions},
678 @rlearning{Size of objects},
679 @rlearning{Length and thickness of objects}.
680
681 Notation Reference:
682 @ref{Hiding staves}.
683
684 Snippets:
685 @rlsr{Staff notation}.
686
687 Internals Reference:
688 @rinternals{StaffSymbol}.
689
690
691 @node Hiding staves
692 @unnumberedsubsubsec Hiding staves
693
694 @cindex Frenched score
695 @cindex Frenched staff
696 @cindex staff, hiding
697 @cindex staff, empty
698 @cindex hiding of staves
699 @cindex empty staves
700
701 Staff lines can be hidden by removing the
702 @code{Staff_symbol_engraver} from the @code{Staff} context.  As an
703 alternative, @code{\stopStaff} may be used.
704
705 @lilypond[verbatim,quote]
706 \new Staff \with {
707   \remove "Staff_symbol_engraver"
708 }
709 \relative c''' { a8 f e16 d c b a2 }
710 @end lilypond
711
712 @funindex \RemoveEmptyStaffContext
713
714 Empty staves can be hidden by setting the
715 @code{\RemoveEmptyStaffContext} command in the @code{\layout}
716 block.  In orchestral scores, this style is known as @q{Frenched
717 Score}.  By default, this command hides and removes all empty
718 staves in a score except for those in the first system.
719
720 @warning{An empty staff may only include multi-measure rests,
721 skips, spacer rests, or a combination of these elements.}
722
723 @lilypond[verbatim,quote,ragged-right]
724 \layout {
725   \context {
726     \RemoveEmptyStaffContext
727   }
728 }
729
730 \relative c' <<
731   \new Staff {
732     e4 f g a \break
733     b1 \break
734     a4 b c2
735   }
736   \new Staff {
737     c,4 d e f \break
738     R1 \break
739     f4 g c,2
740   }
741 >>
742 @end lilypond
743
744 @cindex ossia
745
746 @noindent
747 @code{\RemoveEmptyStaffContext} can also be used to create ossia
748 sections for a staff.  For details, see @ref{Ossia staves}.
749
750 @cindex hiding ancient staves
751 @cindex hiding rhythmic staves
752 @funindex \AncientRemoveEmptyStaffContext
753 @funindex \RemoveEmptyRhythmicStaffContext
754
755 The @code{\AncientRemoveEmptyStaffContext} command may be used to
756 hide empty staves in ancient music contexts.  Similarly,
757 @code{\RemoveEmptyRhythmicStaffContext} may be used to hide empty
758 @code{RhythmicStaff} contexts.
759
760
761 @predefined
762
763 @code{\RemoveEmptyStaffContext},
764 @code{\AncientRemoveEmptyStaffContext},
765 @code{\RemoveEmptyRhythmicStaffContext}.
766
767
768 @snippets
769
770 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
771 {removing-the-first-empty-line.ly}
772
773
774 @seealso
775
776 Music Glossary:
777 @rglos{Frenched staff}.
778
779 Notation Reference:
780 @ref{Staff symbol},
781 @ref{Ossia staves}.
782
783 Snippets:
784 @rlsr{Staff notation}.
785
786 Internals Reference:
787 @rinternals{ChordNames},
788 @rinternals{FiguredBass},
789 @rinternals{Lyrics},
790 @rinternals{Staff},
791 @rinternals{VerticalAxisGroup},
792 @rinternals{Staff_symbol_engraver}.
793
794
795 @knownissues
796
797 Removing @code{Staff_symbol_engraver} also hides bar lines.  If
798 bar line visibility is forced, formatting errors may occur.  In
799 this case, use the following overrides instead of removing the
800 engraver:
801
802 @example
803 \override StaffSymbol #'stencil = ##f
804 \override NoteHead #'no-ledgers = ##t
805 @end example
806
807
808 @node Writing parts
809 @subsection Writing parts
810
811 This section explains how to insert tempo indications and
812 instrument names into a score.  Methods to quote other voices and
813 format cue notes are also described.
814
815 @menu
816 * Metronome marks::
817 * Instrument names::
818 * Quoting other voices::
819 * Formatting cue notes::
820 @end menu
821
822
823 @node Metronome marks
824 @unnumberedsubsubsec Metronome marks
825
826 @cindex tempo
827 @cindex beats per minute
828 @cindex metronome marking
829 @cindex metronome marking with text
830 @funindex \tempo
831
832 A basic metronome mark is simple to write:
833
834 @lilypond[verbatim,quote,relative=1]
835 \tempo 4 = 120
836 c2 d
837 e4. d8 c2
838 @end lilypond
839
840 Tempo indications with text can be used instead:
841
842 @lilypond[verbatim,quote,relative=2]
843 \tempo "Allegretto"
844 c4 e d c
845 b4. a16 b c4 r4
846 @end lilypond
847
848 Combining a metronome mark and text will automatically place the
849 metronome mark within parentheses:
850
851 @lilypond[verbatim,quote,relative=2]
852 \tempo "Allegro" 4 = 160
853 g4 c d e
854 d4 b g2
855 @end lilypond
856
857 In general, the text can be any markup object:
858
859 @lilypond[verbatim,quote,relative=2]
860 \tempo \markup { \italic Faster } 4 = 132
861 a8-. r8 b-. r gis-. r a-. r
862 @end lilypond
863
864 A parenthesized metronome mark with no textual indication may be
865 written by including an empty string in the input:
866
867 @lilypond[verbatim,quote,relative=2]
868 \tempo "" 8 = 96
869 d4 g e c
870 @end lilypond
871
872
873 @snippets
874
875 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
876 {printing-metronome-and-rehearsal-marks-below-the-staff.ly}
877
878 @c perhaps also an example of how to move it horizontally?
879
880 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
881 {changing-the-tempo-without-a-metronome-mark.ly}
882
883 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
884 {creating-metronome-marks-in-markup-mode.ly}
885
886 For more details, see @ref{Formatting text}.
887
888
889 @seealso
890
891 Music Glossary:
892 @rglos{metronome},
893 @rglos{metronomic indication},
894 @rglos{tempo indication},
895 @rglos{metronome mark}.
896
897 Notation Reference:
898 @ref{Formatting text},
899 @ref{MIDI output}.
900
901 Snippets:
902 @rlsr{Staff notation}.
903
904 Internals Reference:
905 @rinternals{MetronomeMark}.
906
907
908 @node Instrument names
909 @unnumberedsubsubsec Instrument names
910
911 @cindex instrument names
912 @cindex instrument names, short
913
914 Instrument names can be printed on the left side of staves in the
915 @code{Staff} and @code{PianoStaff} contexts.  The value of
916 @code{instrumentName} is used for the first staff, and the value
917 of @code{shortInstrumentName} is used for all succeeding staves.
918
919 @lilypond[verbatim,quote,ragged-right,relative=1]
920 \set Staff.instrumentName = "Violin "
921 \set Staff.shortInstrumentName = "Vln "
922 c4.. g'16 c4.. g'16
923 \break
924 c1
925 @end lilypond
926
927 Markup mode can be used to create more complicated instrument
928 names:
929
930 @lilypond[verbatim,quote,relative=2]
931 \set Staff.instrumentName = \markup {
932   \column { "Clarinetti"
933             \line { "in B" \smaller \flat } } }
934 c4 c,16 d e f g2
935 @end lilypond
936
937 @cindex instrument names, centering
938
939 When two or more staff contexts are grouped together, the
940 instrument names and short instrument names are centered by
941 default.  To center multi-line instrument names,
942 @code{\center-column} must be used:
943
944 @lilypond[verbatim,quote,indent=1.5\cm,relative=2]
945 <<
946   \new Staff {
947     \set Staff.instrumentName = "Flute"
948     f2 g4 f
949   }
950   \new Staff {
951     \set Staff.instrumentName = \markup \center-column {
952       Clarinet
953       \line { "in B" \smaller \flat }
954     }
955     c4 b c2
956   }
957 >>
958 @end lilypond
959
960 @cindex indent
961 @cindex short-indent
962
963 However, if the instrument names are longer, the instrument names
964 in a staff group may not be centered unless the @code{indent} and
965 @code{short-indent} settings are increased.  For details about
966 these settings, see @ref{Horizontal dimensions}.
967
968 @lilypond[verbatim,quote,ragged-right]
969 \layout {
970   indent = 3.0\cm
971   short-indent = 1.5\cm
972 }
973
974 \relative c'' <<
975   \new Staff {
976     \set Staff.instrumentName = "Alto Flute in G"
977     \set Staff.shortInstrumentName = "Fl."
978     f2 g4 f \break
979     g4 f g2
980   }
981   \new Staff {
982     \set Staff.instrumentName = "Clarinet"
983     \set Staff.shortInstrumentName = "Clar."
984     c,4 b c2 \break
985     c2 b4 c
986   }
987 >>
988 @end lilypond
989
990 To add instrument names to other contexts (such as
991 @code{GrandStaff}, @code{ChoirStaff}, or @code{StaffGroup}),
992 @code{Instrument_name_engraver} must be added to that context.
993 For details, see @ref{Modifying context plug-ins}.
994
995 @cindex instrument names, changing
996
997 Instrument names may be changed in the middle of a piece:
998
999 @lilypond[verbatim,quote,ragged-right,relative=1]
1000 \set Staff.instrumentName = "First"
1001 \set Staff.shortInstrumentName = "one"
1002 c1 c c c \break
1003 c1 c c c \break
1004 \set Staff.instrumentName = "Second"
1005 \set Staff.shortInstrumentName = "two"
1006 c1 c c c \break
1007 c1 c c c \break
1008 @end lilypond
1009
1010 @cindex instrument switch
1011 @cindex switching instruments
1012
1013 If an instrument @emph{switch} is needed,
1014 @code{\addInstrumentDefinition} may be used in combination with
1015 @code{\instrumentSwitch} to create a detailed list of the
1016 necessary changes for the switch.  The
1017 @code{\addInstrumentDefinition} command has two arguments: an
1018 identifying string, and an association list of context properties
1019 and values to be used for the instrument.  It must be placed in
1020 the toplevel scope.  @code{\instrumentSwitch} is used in the music
1021 expression to declare the instrument switch:
1022
1023 @lilypond[verbatim,quote,ragged-right]
1024 \addInstrumentDefinition #"contrabassoon"
1025   #`((instrumentTransposition . ,(ly:make-pitch -1 0 0))
1026      (shortInstrumentName . "Cbsn.")
1027      (clefGlyph . "clefs.F")
1028      (middleCPosition . 6)
1029      (clefPosition . 2)
1030      (instrumentCueName . ,(make-bold-markup "cbsn."))
1031      (midiInstrument . "bassoon"))
1032
1033 \new Staff \with {
1034   instrumentName = "Bassoon"
1035 }
1036 \relative c' {
1037   \clef tenor
1038   \compressFullBarRests
1039   c2 g'
1040   R1*16
1041   \instrumentSwitch "contrabassoon"
1042   c,,2 g \break
1043   c,1 ~ | c1
1044 }
1045 @end lilypond
1046
1047
1048 @seealso
1049
1050 Notation Reference:
1051 @ref{Horizontal dimensions},
1052 @ref{Modifying context plug-ins}.
1053
1054 Snippets:
1055 @rlsr{Staff notation}.
1056
1057 Internals Reference:
1058 @rinternals{InstrumentName},
1059 @rinternals{PianoStaff},
1060 @rinternals{Staff}.
1061
1062
1063 @node Quoting other voices
1064 @unnumberedsubsubsec Quoting other voices
1065
1066 @cindex cues
1067 @cindex quoting other voices
1068 @cindex fragments
1069 @cindex cue notes
1070
1071 It is very common for one voice to double the some of the music from                     
1072 another voice.  For example, the first and second violins may play the                    
1073 same notes during a passage of music.  In LilyPond this is accomplished                   
1074 by letting one voice @emph{quote} the other voice without having to
1075 re-enter it.
1076                                                                        
1077 Before a part can be quoted, the @code{\addQuote} command must be used                   
1078 to initialize the quoted fragment.  This command must be used in the                      
1079 toplevel scope.  The first argument is an identifying string, and the                     
1080 second is a music expression: 
1081
1082 @example
1083 flute = \relative c'' @{
1084   a4 gis g gis
1085 @}
1086 \addQuote "flute" @{ \flute @}
1087 @end example
1088
1089 The @code{\quoteDuring} command is used to indicate the point where the
1090 quotation begins.  It is followed by two arguments: the name of the
1091 quoted voice, as defined with @code{\addQuote}, and a music expression
1092 that indicates the duration of the quote, usually spacer rests or
1093 multi-measure rests.  The corresponding music from the quoted voice is
1094 inserted into the music expression:
1095
1096 @lilypond[verbatim,quote]
1097 flute = \relative c'' {
1098   a4 gis g gis
1099 }
1100 \addQuote "flute" { \flute }
1101
1102 \relative c' {
1103   c4 cis \quoteDuring #"flute" { s2 }
1104 }
1105 @end lilypond
1106
1107 If the music expression used for @code{\quoteDuring} contains
1108 anything but a spacer rest or multi-measure rest, a polyphonic
1109 situation is created, which is often not desirable:
1110
1111 @lilypond[verbatim,quote]
1112 flute = \relative c'' {
1113   a4 gis g gis
1114 }
1115 \addQuote "flute" { \flute }
1116
1117 \relative c' {
1118   c4 cis \quoteDuring #"flute" { c4 b }
1119 }
1120 @end lilypond
1121
1122 Quotations recognize instrument transposition settings for both
1123 the source and target instruments if the @code{\transposition}
1124 command is used.  For details about @code{\transposition}, see
1125 @ref{Instrument transpositions}.
1126
1127 @lilypond[verbatim,quote]
1128 clarinet = \relative c'' {
1129   \transposition bes
1130   a4 gis g gis
1131 }
1132 \addQuote "clarinet" { \clarinet }
1133
1134 \relative c' {
1135   c4 cis \quoteDuring #"clarinet" { s2 }
1136 }
1137 @end lilypond
1138
1139 It is possible to tag quotations with unique names in order to
1140 process them in different ways.  For details about this procedure,
1141 see @ref{Using tags}.
1142
1143
1144 @snippets
1145
1146 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
1147 {quoting-another-voice-with-transposition.ly}
1148
1149 @cindex note-event
1150 @cindex articulation-event
1151 @cindex dynamic-event
1152 @cindex rest-event
1153 @funindex quotedEventTypes
1154
1155 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
1156 {quoting-another-voice.ly}
1157
1158
1159 @seealso
1160
1161 Notation Reference:
1162 @ref{Instrument transpositions},
1163 @ref{Using tags}.
1164
1165 Snippets:
1166 @rlsr{Staff notation}.
1167
1168 Internals Reference:
1169 @rinternals{QuoteMusic},
1170 @rinternals{Voice}.
1171
1172
1173 @knownissues
1174
1175 Only the contents of the first @code{Voice} occurring in an
1176 @code{\addQuote} command will be considered for quotation, so
1177 @var{music} cannot contain @code{\new} and @code{\context Voice}
1178 statements that would switch to a different Voice.
1179
1180 Quoting grace notes is broken and can even cause LilyPond to
1181 crash.
1182
1183 Quoting nested triplets may result in poor notation.
1184
1185 In earlier versions of LilyPond (pre 2.11), @code{addQuote} was
1186 written entirely in lower-case letters: @code{\addquote}.
1187
1188
1189 @node Formatting cue notes
1190 @unnumberedsubsubsec Formatting cue notes
1191
1192 @cindex cues
1193 @cindex cue notes
1194 @cindex cue notes, formatting
1195 @cindex fragments
1196 @cindex quoting other voices
1197 @cindex cues, formatting
1198
1199 The previous section explains how to create quotations.  The
1200 @code{\cueDuring} command is a more specialized form of
1201 @code{\quoteDuring}, being particularly useful for inserting cue
1202 notes into a part.  The syntax is as follows:
1203
1204 @example
1205 \cueDuring #@var{partname} #@var{voice} @var{music}
1206 @end example
1207
1208 This command copies the corresponding measures from @var{partname}
1209 into a @code{CueVoice} context.  The @code{CueVoice} is created
1210 implicitly, and occurs simultaneously with @var{music}, which
1211 creates a polyphonic situation.  The @var{voice} argument
1212 determines whether the cue notes should be notated as a first or
1213 second voice; @code{UP} corresponds to the first voice, and
1214 @code{DOWN} corresponds to the second.
1215
1216 @lilypond[verbatim,quote]
1217 oboe = \relative c'' {
1218   r2 r8 d16 f e g f a
1219   g8 g16 g g2.
1220 }
1221 \addQuote "oboe" { \oboe }
1222
1223 \new Voice \relative c'' {
1224   \cueDuring #"oboe" #UP { R1 }
1225   g2 c,
1226 }
1227 @end lilypond
1228
1229 @noindent
1230 In the above example, the @code{Voice} context had to be
1231 explicitly declared, or else the entire music expression would
1232 belong to the @code{CueVoice} context.
1233
1234 The name of the cued instrument can be printed by setting the
1235 @code{instrumentCueName} property in the @code{CueVoice} context.
1236
1237 @lilypond[verbatim,quote]
1238 oboe = \relative c''' {
1239   g4 r8 e16 f e4 d
1240 }
1241 \addQuote "oboe" { \oboe }
1242
1243 \new Staff \relative c'' <<
1244   \new CueVoice \with {
1245     instrumentCueName = "ob."
1246   }
1247   \new Voice {
1248     \cueDuring #"oboe" #UP { R1 }
1249     g4. b8 d2
1250   }
1251 >>
1252 @end lilypond
1253
1254 In addition to printing the name of the cued instrument, when cue
1255 notes end, the name of the original instrument should be printed,
1256 and any other changes introduced by the cued part should be
1257 undone.  This can be accomplished by using
1258 @code{\addInstrumentDefinition} and @code{\instrumentSwitch}.  For
1259 an example and explanation, see @ref{Instrument names}.
1260
1261 The @code{\killCues} command removes cue notes from a music
1262 expression.  This can be useful if cue notes need to be removed
1263 from a part but may be restored at a later time.
1264
1265 @lilypond[verbatim,quote]
1266 flute = \relative c''' {
1267   r2 cis2 r2 dis2
1268 }
1269 \addQuote "flute" { \flute }
1270
1271 \new Voice \relative c'' {
1272   \killCues {
1273     \cueDuring #"flute" #UP { R1 }
1274     g4. b8 d2
1275   }
1276 }
1277 @end lilypond
1278
1279 The @code{\transposedCueDuring} command is useful for adding
1280 instrumental cues from a completely different register.  The
1281 syntax is similar to @code{\cueDuring}, but it requires one extra
1282 argument to specify the transposition of the cued instrument.  For
1283 more information about transposition, see
1284 @ref{Instrument transpositions}.
1285
1286 @lilypond[verbatim,quote]
1287 piccolo = \relative c''' {
1288   \clef "treble^8"
1289   R1
1290   c8 c c e g2
1291   a4 g g2
1292 }
1293 \addQuote "piccolo" { \piccolo }
1294
1295 cbassoon = \relative c, {
1296   \clef "bass_8"
1297   c4 r g r
1298   \transposedCueDuring #"piccolo" #UP c,, { R1 }
1299   c4 r g r
1300 }
1301
1302 <<
1303   \new Staff = "piccolo" \piccolo
1304   \new Staff = "cbassoon" \cbassoon
1305 >>
1306 @end lilypond
1307
1308 It is possible to tag cued parts with unique names in order to
1309 process them in different ways.  For details about this procedure,
1310 see @ref{Using tags}.
1311
1312
1313 @seealso
1314
1315 Notation Reference:
1316 @ref{Instrument transpositions},
1317 @ref{Instrument names},
1318 @ref{Using tags}.
1319
1320 Snippets:
1321 @rlsr{Staff notation}.
1322
1323 Internals Reference:
1324 @rinternals{CueVoice},
1325 @rinternals{Voice}.
1326
1327
1328 @knownissues
1329
1330 Collisions can occur with rests, when using @code{\cueDuring},
1331 between @code{Voice} and @code{CueVoice} contexts.