]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/staff.itely
Doc-es: Programming Interface, - END
[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 @c TODO add snippet when ready
881 @c @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
882 @c {changing-the-tempo-without-a-visible-metronome-mark.ly}
883
884 To change the tempo in the MIDI output without printing anything,
885 make the metronome marking invisible
886
887 @example
888 \once \override Score.MetronomeMark #'transparent = ##t
889 @end example
890
891 @c TODO add snippet when ready
892 @c @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
893 @c {creating-metronome-marks-in-markup-mode.ly}
894
895 To print other metronome markings, use these markup commands
896
897 @lilypond[verbatim,quote,relative=1]
898 c4^\markup {
899   (
900   \smaller \general-align #Y #DOWN \note #"16." #1
901   =
902   \smaller \general-align #Y #DOWN \note #"8" #1
903   ) }
904 @end lilypond
905
906 For more details, see @ref{Formatting text}.
907
908
909 @seealso
910
911 Music Glossary:
912 @rglos{metronome},
913 @rglos{metronomic indication},
914 @rglos{tempo indication},
915 @rglos{metronome mark}.
916
917 Notation Reference:
918 @ref{Formatting text},
919 @ref{MIDI output}.
920
921 Snippets:
922 @rlsr{Staff notation}.
923
924 Internals Reference:
925 @rinternals{MetronomeMark}.
926
927
928 @node Instrument names
929 @unnumberedsubsubsec Instrument names
930
931 @cindex instrument names
932 @cindex instrument names, short
933
934 Instrument names can be printed on the left side of staves in the
935 @code{Staff} and @code{PianoStaff} contexts.  The value of
936 @code{instrumentName} is used for the first staff, and the value
937 of @code{shortInstrumentName} is used for all succeeding staves.
938
939 @lilypond[verbatim,quote,ragged-right,relative=1]
940 \set Staff.instrumentName = "Violin "
941 \set Staff.shortInstrumentName = "Vln "
942 c4.. g'16 c4.. g'16
943 \break
944 c1
945 @end lilypond
946
947 Markup mode can be used to create more complicated instrument
948 names:
949
950 @lilypond[verbatim,quote,relative=2]
951 \set Staff.instrumentName = \markup {
952   \column { "Clarinetti"
953             \line { "in B" \smaller \flat } } }
954 c4 c,16 d e f g2
955 @end lilypond
956
957 @cindex instrument names, centering
958
959 When two or more staff contexts are grouped together, the
960 instrument names and short instrument names are centered by
961 default.  To center multi-line instrument names,
962 @code{\center-column} must be used:
963
964 @lilypond[verbatim,quote,indent=1.5\cm,relative=2]
965 <<
966   \new Staff {
967     \set Staff.instrumentName = "Flute"
968     f2 g4 f
969   }
970   \new Staff {
971     \set Staff.instrumentName = \markup \center-column {
972       Clarinet
973       \line { "in B" \smaller \flat }
974     }
975     c4 b c2
976   }
977 >>
978 @end lilypond
979
980 @cindex indent
981 @cindex short-indent
982
983 However, if the instrument names are longer, the instrument names
984 in a staff group may not be centered unless the @code{indent} and
985 @code{short-indent} settings are increased.  For details about
986 these settings, see @ref{Horizontal dimensions}.
987
988 @lilypond[verbatim,quote,ragged-right]
989 \layout {
990   indent = 3.0\cm
991   short-indent = 1.5\cm
992 }
993
994 \relative c'' <<
995   \new Staff {
996     \set Staff.instrumentName = "Alto Flute in G"
997     \set Staff.shortInstrumentName = "Fl."
998     f2 g4 f \break
999     g4 f g2
1000   }
1001   \new Staff {
1002     \set Staff.instrumentName = "Clarinet"
1003     \set Staff.shortInstrumentName = "Clar."
1004     c,4 b c2 \break
1005     c2 b4 c
1006   }
1007 >>
1008 @end lilypond
1009
1010 To add instrument names to other contexts (such as
1011 @code{GrandStaff}, @code{ChoirStaff}, or @code{StaffGroup}),
1012 @code{Instrument_name_engraver} must be added to that context.
1013 For details, see @ref{Modifying context plug-ins}.
1014
1015 @cindex instrument names, changing
1016
1017 Instrument names may be changed in the middle of a piece:
1018
1019 @lilypond[verbatim,quote,ragged-right,relative=1]
1020 \set Staff.instrumentName = "First"
1021 \set Staff.shortInstrumentName = "one"
1022 c1 c c c \break
1023 c1 c c c \break
1024 \set Staff.instrumentName = "Second"
1025 \set Staff.shortInstrumentName = "two"
1026 c1 c c c \break
1027 c1 c c c \break
1028 @end lilypond
1029
1030 @cindex instrument switch
1031 @cindex switching instruments
1032
1033 If an instrument @emph{switch} is needed,
1034 @code{\addInstrumentDefinition} may be used in combination with
1035 @code{\instrumentSwitch} to create a detailed list of the
1036 necessary changes for the switch.  The
1037 @code{\addInstrumentDefinition} command has two arguments: an
1038 identifying string, and an association list of context properties
1039 and values to be used for the instrument.  It must be placed in
1040 the toplevel scope.  @code{\instrumentSwitch} is used in the music
1041 expression to declare the instrument switch:
1042
1043 @lilypond[verbatim,quote,ragged-right]
1044 \addInstrumentDefinition #"contrabassoon"
1045   #`((instrumentTransposition . ,(ly:make-pitch -1 0 0))
1046      (shortInstrumentName . "Cbsn.")
1047      (clefGlyph . "clefs.F")
1048      (middleCPosition . 6)
1049      (clefPosition . 2)
1050      (instrumentCueName . ,(make-bold-markup "cbsn."))
1051      (midiInstrument . "bassoon"))
1052
1053 \new Staff \with {
1054   instrumentName = "Bassoon"
1055 }
1056 \relative c' {
1057   \clef tenor
1058   \compressFullBarRests
1059   c2 g'
1060   R1*16
1061   \instrumentSwitch "contrabassoon"
1062   c,,2 g \break
1063   c,1 ~ | c1
1064 }
1065 @end lilypond
1066
1067
1068 @seealso
1069
1070 Notation Reference:
1071 @ref{Horizontal dimensions},
1072 @ref{Modifying context plug-ins}.
1073
1074 Snippets:
1075 @rlsr{Staff notation}.
1076
1077 Internals Reference:
1078 @rinternals{InstrumentName},
1079 @rinternals{PianoStaff},
1080 @rinternals{Staff}.
1081
1082
1083 @node Quoting other voices
1084 @unnumberedsubsubsec Quoting other voices
1085
1086 @cindex cues
1087 @cindex quoting other voices
1088 @cindex fragments
1089 @cindex cue notes
1090
1091 It is very common for one voice to double the some of the music from                     
1092 another voice.  For example, the first and second violins may play the                    
1093 same notes during a passage of music.  In LilyPond this is accomplished                   
1094 by letting one voice @emph{quote} the other voice without having to
1095 re-enter it.
1096                                                                        
1097 Before a part can be quoted, the @code{\addQuote} command must be used                   
1098 to initialize the quoted fragment.  This command must be used in the                      
1099 toplevel scope.  The first argument is an identifying string, and the                     
1100 second is a music expression: 
1101
1102 @example
1103 flute = \relative c'' @{
1104   a4 gis g gis
1105 @}
1106 \addQuote "flute" @{ \flute @}
1107 @end example
1108
1109 The @code{\quoteDuring} command is used to indicate the point where the
1110 quotation begins.  It is followed by two arguments: the name of the
1111 quoted voice, as defined with @code{\addQuote}, and a music expression
1112 that indicates the duration of the quote, usually spacer rests or
1113 multi-measure rests.  The corresponding music from the quoted voice is
1114 inserted into the music expression:
1115
1116 @lilypond[verbatim,quote]
1117 flute = \relative c'' {
1118   a4 gis g gis
1119 }
1120 \addQuote "flute" { \flute }
1121
1122 \relative c' {
1123   c4 cis \quoteDuring #"flute" { s2 }
1124 }
1125 @end lilypond
1126
1127 If the music expression used for @code{\quoteDuring} contains
1128 anything but a spacer rest or multi-measure rest, a polyphonic
1129 situation is created, which is often not desirable:
1130
1131 @lilypond[verbatim,quote]
1132 flute = \relative c'' {
1133   a4 gis g gis
1134 }
1135 \addQuote "flute" { \flute }
1136
1137 \relative c' {
1138   c4 cis \quoteDuring #"flute" { c4 b }
1139 }
1140 @end lilypond
1141
1142 Quotations recognize instrument transposition settings for both
1143 the source and target instruments if the @code{\transposition}
1144 command is used.  For details about @code{\transposition}, see
1145 @ref{Instrument transpositions}.
1146
1147 @lilypond[verbatim,quote]
1148 clarinet = \relative c'' {
1149   \transposition bes
1150   a4 gis g gis
1151 }
1152 \addQuote "clarinet" { \clarinet }
1153
1154 \relative c' {
1155   c4 cis \quoteDuring #"clarinet" { s2 }
1156 }
1157 @end lilypond
1158
1159 It is possible to tag quotations with unique names in order to
1160 process them in different ways.  For details about this procedure,
1161 see @ref{Using tags}.
1162
1163
1164 @snippets
1165
1166 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
1167 {quoting-another-voice-with-transposition.ly}
1168
1169 @cindex note-event
1170 @cindex articulation-event
1171 @cindex dynamic-event
1172 @cindex rest-event
1173 @funindex quotedEventTypes
1174
1175 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
1176 {quoting-another-voice.ly}
1177
1178
1179 @seealso
1180
1181 Notation Reference:
1182 @ref{Instrument transpositions},
1183 @ref{Using tags}.
1184
1185 Snippets:
1186 @rlsr{Staff notation}.
1187
1188 Internals Reference:
1189 @rinternals{QuoteMusic},
1190 @rinternals{Voice}.
1191
1192
1193 @knownissues
1194
1195 Only the contents of the first @code{Voice} occurring in an
1196 @code{\addQuote} command will be considered for quotation, so
1197 @var{music} cannot contain @code{\new} and @code{\context Voice}
1198 statements that would switch to a different Voice.
1199
1200 Quoting grace notes is broken and can even cause LilyPond to
1201 crash.
1202
1203 Quoting nested triplets may result in poor notation.
1204
1205 In earlier versions of LilyPond (pre 2.11), @code{addQuote} was
1206 written entirely in lower-case letters: @code{\addquote}.
1207
1208
1209 @node Formatting cue notes
1210 @unnumberedsubsubsec Formatting cue notes
1211
1212 @cindex cues
1213 @cindex cue notes
1214 @cindex cue notes, formatting
1215 @cindex fragments
1216 @cindex quoting other voices
1217 @cindex cues, formatting
1218
1219 The previous section explains how to create quotations.  The
1220 @code{\cueDuring} command is a more specialized form of
1221 @code{\quoteDuring}, being particularly useful for inserting cue
1222 notes into a part.  The syntax is as follows:
1223
1224 @example
1225 \cueDuring #@var{partname} #@var{voice} @var{music}
1226 @end example
1227
1228 This command copies the corresponding measures from @var{partname}
1229 into a @code{CueVoice} context.  The @code{CueVoice} is created
1230 implicitly, and occurs simultaneously with @var{music}, which
1231 creates a polyphonic situation.  The @var{voice} argument
1232 determines whether the cue notes should be notated as a first or
1233 second voice; @code{UP} corresponds to the first voice, and
1234 @code{DOWN} corresponds to the second.
1235
1236 @lilypond[verbatim,quote]
1237 oboe = \relative c'' {
1238   r2 r8 d16 f e g f a
1239   g8 g16 g g2.
1240 }
1241 \addQuote "oboe" { \oboe }
1242
1243 \new Voice \relative c'' {
1244   \cueDuring #"oboe" #UP { R1 }
1245   g2 c,
1246 }
1247 @end lilypond
1248
1249 @noindent
1250 In the above example, the @code{Voice} context had to be
1251 explicitly declared, or else the entire music expression would
1252 belong to the @code{CueVoice} context.
1253
1254 The name of the cued instrument can be printed by setting the
1255 @code{instrumentCueName} property in the @code{CueVoice} context.
1256
1257 @lilypond[verbatim,quote]
1258 oboe = \relative c''' {
1259   g4 r8 e16 f e4 d
1260 }
1261 \addQuote oboe { \oboe }
1262
1263 \new Staff \relative c'' <<
1264   \new CueVoice \with {
1265     instrumentCueName = "ob."
1266   }
1267   \new Voice {
1268     \cueDuring #"oboe" #UP { R1 }
1269     g4. b8 d2
1270   }
1271 >>
1272 @end lilypond
1273
1274 In addition to printing the name of the cued instrument, when cue
1275 notes end, the name of the original instrument should be printed,
1276 and any other changes introduced by the cued part should be
1277 undone.  This can be accomplished by using
1278 @code{\addInstrumentDefinition} and @code{\instrumentSwitch}.  For
1279 an example and explanation, see @ref{Instrument names}.
1280
1281 The @code{\killCues} command removes cue notes from a music
1282 expression.  This can be useful if cue notes need to be removed
1283 from a part but may be restored at a later time.
1284
1285 @lilypond[verbatim,quote]
1286 flute = \relative c''' {
1287   r2 cis2 r2 dis2
1288 }
1289 \addQuote flute { \flute }
1290
1291 \new Voice \relative c'' {
1292   \killCues {
1293     \cueDuring #"flute" #UP { R1 }
1294     g4. b8 d2
1295   }
1296 }
1297 @end lilypond
1298
1299 The @code{\transposedCueDuring} command is useful for adding
1300 instrumental cues from a completely different register.  The
1301 syntax is similar to @code{\cueDuring}, but it requires one extra
1302 argument to specify the transposition of the cued instrument.  For
1303 more information about transposition, see
1304 @ref{Instrument transpositions}.
1305
1306 @lilypond[verbatim,quote]
1307 piccolo = \relative c''' {
1308   \clef "treble^8"
1309   R1
1310   c8 c c e g2
1311   a4 g g2
1312 }
1313 \addQuote "piccolo" { \piccolo }
1314
1315 cbassoon = \relative c, {
1316   \clef "bass_8"
1317   c4 r g r
1318   \transposedCueDuring #"piccolo" #UP c,, { R1 }
1319   c4 r g r
1320 }
1321
1322 <<
1323   \new Staff = "piccolo" \piccolo
1324   \new Staff = "cbassoon" \cbassoon
1325 >>
1326 @end lilypond
1327
1328 It is possible to tag cued parts with unique names in order to
1329 process them in different ways.  For details about this procedure,
1330 see @ref{Using tags}.
1331
1332
1333 @seealso
1334
1335 Notation Reference:
1336 @ref{Instrument transpositions},
1337 @ref{Instrument names},
1338 @ref{Using tags}.
1339
1340 Snippets:
1341 @rlsr{Staff notation}.
1342
1343 Internals Reference:
1344 @rinternals{CueVoice},
1345 @rinternals{Voice}.
1346
1347
1348 @knownissues
1349
1350 Collisions can occur with rests, when using @code{\cueDuring},
1351 between @code{Voice} and @code{CueVoice} contexts.