]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/advanced-notation.itely
* lily/ various: Introduce stream events of types Prepare,
[lilypond.git] / Documentation / user / advanced-notation.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @c This file is part of lilypond.tely
3
4 @c A menu is needed before every deeper *section nesting of @node's; run
5 @c     M-x texinfo-all-menus-update
6 @c to automatically fill in these menus before saving changes
7
8
9 @node Advanced notation
10 @chapter Advanced notation
11
12 This chapter deals with rarely-used and advanced notation.
13
14 @menu
15 * Text::                        
16 * Preparing parts::             
17 * Orchestral music::            
18 * Contemporary notation::       
19 * Educational use::             
20 @end menu
21
22
23
24 @node Text
25 @section Text
26
27 This section explains how to include text (with various formatting) in
28 your scores.
29
30 @cindex Text, other languages
31 To write non-ascii text (such as characters from other languages), simply
32 insert the characters directly into the lilypond file.  The file must be
33 saved as UTF-8.  For more information, see @ref{Text encoding}.
34
35 @menu
36 * Text scripts::                
37 * Text spanners::               
38 * Text marks::                  
39 * Text markup::                 
40 * Nested scores::               
41 * Overview of text markup commands::  
42 * Font selection::              
43 * New dynamic marks::           
44 @end menu
45
46
47 @node Text scripts
48 @subsection Text scripts
49
50 @cindex Text scripts
51 @cindex text items, non-empty
52 @cindex non-empty texts
53
54 It is possible to place arbitrary strings of text or @ref{Text markup}
55 above or below notes by using a string @code{c^"text"}.  By default,
56 these indications do not influence the note spacing, but by using the
57 command @code{\fatText}, the widths will be taken into account
58
59 @lilypond[quote,fragment,ragged-right,verbatim,relative=1]
60 c4^"longtext" \fatText c4_"longlongtext" c4
61 @end lilypond
62
63 @noindent
64 To prevent text from influencing spacing, use @code{\emptyText}.
65
66 More complex formatting may also be added to a note by using the
67 markup command,
68 @lilypond[fragment,ragged-right,verbatim,quote]
69 c'4^\markup { bla \bold bla }
70 @end lilypond
71
72 The @code{\markup} is described in more detail in
73 @ref{Text markup}.
74
75
76 @refcommands
77
78 @funindex \fatText
79 @code{\fatText},
80 @funindex \emptyText
81 @code{\emptyText}.
82
83
84 @commonprop
85
86 Checking to make sure that text scripts and lyrics are within the margins is
87 a relatively large computational task.  To speed up processing, lilypond does
88 not perform such calculations by default; to enable it, use
89
90 @example
91 \override Score.PaperColumn #'keep-inside-line = ##t
92 @end example
93
94
95 @seealso
96
97 In this manual: @ref{Text markup}.
98
99 Program reference: @internalsref{TextScript}.
100
101
102 @node Text spanners
103 @subsection Text spanners
104
105 @cindex Text spanners
106
107 Some performance indications, e.g., @i{rallentando} or @i{accelerando},
108 are written as text and are extended over many measures with dotted
109 lines.  Such texts are created using text spanners; attach
110 @code{\startTextSpan} and @code{\stopTextSpan} to the first and last
111 notes of the spanner.
112
113 The string to be printed, as well as the style, is set through object
114 properties
115
116 @lilypond[quote,ragged-right,fragment,relative=1,verbatim]
117 c1
118 \textSpannerDown
119 \override TextSpanner #'edge-text = #'("rall " . "")
120 c2\startTextSpan b c\stopTextSpan a
121 \break
122 \textSpannerUp
123 \override TextSpanner #'edge-text = #(cons (markup #:italic "rit" ) "")
124 c2\startTextSpan b c\stopTextSpan a
125 @end lilypond
126
127 @refcommands
128
129 @cindex textSpannerUp
130 @code{textSpannerUp},
131 @cindex textSpannerDown
132 @code{textSpannerDown},
133 @cindex textSpannerNeutral
134 @code{textSpannerNeutral}.
135
136
137 @commonprop
138
139 To print a solid line, use
140
141 @example
142 \override TextSpanner #'dash-fraction = #'()
143 @end example
144
145
146 @seealso
147
148 Program reference: @internalsref{TextSpanner}.
149
150 Examples: @inputfileref{input/@/regression,text@/-spanner@/.ly}.
151
152
153 @node Text marks
154 @subsection Text marks
155
156 @cindex coda on bar line
157 @cindex segno on bar line
158 @cindex fermata on bar line
159 @cindex bar lines, symbols on
160 @funindex \mark
161
162 The @code{\mark} command is primarily used for
163 @ref{Rehearsal marks},
164 but it can also be used to put signs like coda,
165 segno, and fermata on a bar line.  Use @code{\markup} to
166 access the appropriate symbol (symbols are listed in
167 @ref{The Feta font})
168
169 @lilypond[fragment,quote,ragged-right,verbatim,relative=2]
170 c1 \mark \markup { \musicglyph #"scripts.ufermata" }
171 c1
172 @end lilypond
173
174 @noindent
175 @code{\mark} is only typeset above the top stave of the score.  If
176 you specify the @code{\mark} command at a bar line, the resulting
177 mark is placed above the bar line.  If you specify it in the middle
178 of a bar, the resulting mark is positioned between notes.  If it is
179 specified before the beginning of a score line, it is placed
180 before the first note of the line.  Finally, if the mark occurs at
181 a line break, the mark will be printed at the
182 beginning of the next line.
183 @c  IMO this is a bug; hopefully it'll be fixed soon, so I can
184 @c  delete this sentence.   -gp
185 If there is no next line, then the mark will not be printed at all.
186
187
188 @commonprop
189
190 To print the mark at the end of the current line, use
191
192 @example
193 \override Score.RehearsalMark
194   #'break-visibility = #begin-of-line-invisible
195 @end example
196
197 @code{\mark} is often useful for adding text to the end of bar.  In
198 such cases, changing the @code{#'self-alignment} is very useful
199
200 @lilypond[fragment,quote,ragged-right,verbatim,relative=2]
201 \override Score.RehearsalMark
202   #'break-visibility = #begin-of-line-invisible
203 c1 c c c4 c c c
204 \once \override Score.RehearsalMark #'self-alignment-X = #right
205 \mark "D.S. al Fine "
206 @end lilypond
207
208 Text marks may be aligned with notation objects other than
209 bar lines,
210
211 @lilypond[fragment,quote,ragged-right,verbatim,relative=2]
212 \relative {
213   c1
214   \key cis \major
215   \clef alto
216   \override Score.RehearsalMark #'break-align-symbol = #'key-signature
217   \mark "on key"
218   cis
219   \key ces \major
220   \override Score.RehearsalMark #'break-align-symbol = #'clef
221   \clef treble
222   \mark "on clef"
223   ces
224   \override Score.RehearsalMark #'break-align-symbol = #'time-signature
225   \key d \minor
226   \clef tenor
227   \time 3/4
228   \mark "on time"
229   c
230 }
231 @end lilypond
232
233 Although text marks are normally only printed above the topmost
234 staff, you may alter this to print them on every staff,
235
236 @lilypond[quote,ragged-right,verbatim,relative=2]
237 {
238   \new Score \with {
239     \remove "Mark_engraver"
240   }
241   <<
242     \new Staff \with {
243       \consists "Mark_engraver"
244     }
245     { c''1 \mark "foo" c'' }
246     \new Staff \with {
247       \consists "Mark_engraver"
248     }
249     { c'1 \mark "foo" c' }
250   >>
251 }
252 @end lilypond
253
254
255 @seealso
256
257 Program reference: @internalsref{RehearsalMark}.
258
259
260 @node Text markup
261 @subsection Text markup
262
263 @cindex markup
264 @cindex text markup
265 @cindex markup text
266 @cindex typeset text
267
268 Use @code{\markup} to typeset text.  Commands are entered with the
269 backslash @code{\}.  To enter @code{\} and @code{#}, use double
270 quotation marks.
271
272 @lilypond[quote,verbatim,fragment,relative=1]
273 c1^\markup { hello }
274 c1_\markup { hi there }
275 c1^\markup { hi \bold there, is \italic {anyone home?} }
276 c1_\markup { "\special {weird} #characters" }
277 @end lilypond
278
279 @noindent
280 See @ref{Overview of text markup commands} for a list of all
281 commands.
282
283 @code{\markup} is primarily used for @internalsref{TextScript}s,
284 but it can also be used anywhere text is called in lilypond
285
286 @lilypond[quote,verbatim]
287 \header{ title = \markup{ \bold { foo \italic { bar! } } } }
288 \score{
289   \relative c'' {
290     \override Score.RehearsalMark
291       #'break-visibility = #begin-of-line-invisible
292     \override Score.RehearsalMark #'self-alignment-X = #right
293
294     \set Staff.instrument = \markup{ \column{ Alto solo } }
295     c2^\markup{ don't be \flat }
296     \override TextSpanner #'edge-text = #(cons (markup #:italic "rit" ) "")
297     b2\startTextSpan
298     a2\mark \markup{ \large \bold Fine }
299     r2\stopTextSpan
300     \bar "||"
301   }
302   \addlyrics { bar, foo \markup{ \italic bar! } }
303 }
304 @end lilypond
305
306 Text can also be placed on its own, away from any @code{\score}
307 block.  This is primarily used in a @code{\book} (see
308 @ref{Multiple scores in a book}).
309
310 @lilypond[quote,ragged-right,verbatim]
311 \markup{ Here is some text. }
312 @end lilypond
313
314 @cindex font switching
315
316 The markup in the example demonstrates font switching commands.  The
317 command @code{\bold} and @code{\italic} apply to the first following
318 word only; to apply a command to more than one word, enclose the
319 words with braces,
320
321 @example
322 \markup @{ \bold @{ hi there @} @}
323 @end example
324
325 @noindent
326 For clarity, you can also do this for single arguments, e.g.,
327
328 @example
329 \markup @{ is \italic @{ anyone @} home @}
330 @end example
331
332 In markup mode you can compose expressions, similar to mathematical
333 expressions, XML documents, and music expressions.  You can stack
334 expressions grouped vertically with the command @code{\column}.
335 Similarly, @code{\center-align} aligns texts by their center lines:
336
337 @lilypond[quote,verbatim,fragment,relative=1]
338 c1^\markup { \column { a bbbb \line { c d } } }
339 c1^\markup { \center-align { a bbbb c } }
340 c1^\markup { \line { a b c } }
341 @end lilypond
342
343 Lists with no previous command are not kept distinct.  The expression
344
345 @example
346 \center-align @{ @{ a b @} @{ c d @} @}
347 @end example
348
349 @noindent
350
351 is equivalent to
352
353 @example
354 \center-align @{ a b c d @}
355 @end example
356
357 @noindent
358
359 To keep lists of words distinct, please use quotes @code{"} or
360 the @code{\line} command
361
362 @lilypond[quote,verbatim,fragment,relative=1]
363 \fatText
364 c4^\markup{ \center-align { on three lines } }
365 c4^\markup{ \center-align { "all one line" } }
366 c4^\markup{ \center-align { { on three lines } } }
367 c4^\markup{ \center-align { \line { on one line } } }
368 @end lilypond
369
370 Markups can be stored in variables and these variables
371 may be attached to notes, like
372 @example
373 allegro = \markup @{ \bold \large @{ Allegro @} @}
374  @{ a^\allegro b c d @}
375 @end example
376
377 Some objects have alignment procedures of their own, which cancel out
378 any effects of alignments applied to their markup arguments as a
379 whole.  For example, the @internalsref{RehearsalMark} is horizontally
380 centered, so using @code{\mark \markup @{ \left-align .. @}} has no
381 effect.
382
383 In addition, vertical placement is performed after creating the
384 text markup object.  If you wish to move an entire piece of markup,
385 you need to use the #'padding property or create an "anchor" point
386 inside the markup (generally with @code{\hspace #0}).
387
388 @lilypond[quote,verbatim,fragment,relative=1]
389 \fatText
390 c'4^\markup{ \raise #5 "not raised" }
391 \once \override TextScript #'padding = #3
392 c'4^\markup{ raised }
393 c'4^\markup{ \hspace #0 \raise #1.5 raised }
394 @end lilypond
395
396 Some situations (such as dynamic marks) have preset font-related
397 properties.  If you are creating text in such situations, it
398 is advisable to cancel those properties with
399 @code{normal-text}.  See @ref{Overview of text markup commands}
400 for more details.
401
402
403 @seealso
404
405 This manual: @ref{Overview of text markup commands}.
406
407 Program reference: @internalsref{TextScript}.
408
409 Init files: @file{scm/@/new@/-markup@/.scm}.
410
411
412 @refbugs
413
414 Kerning or generation of ligatures is only done when the @TeX{}
415 backend is used.  In this case, LilyPond does not account for them so
416 texts will be spaced slightly too wide.
417
418 Syntax errors for markup mode are confusing.
419
420
421 @node Nested scores
422 @subsection Nested scores
423
424 It is possible to nest music inside markups, by adding a @code{\score}
425 block to a markup expression.  Such a score must contain a @code{\layout}
426 block.
427
428 @lilypond[quote,verbatim,ragged-right]
429 \relative {
430   c4 d^\markup {
431     \score {
432       \relative { c4 d e f }
433       \layout { }
434     }
435   }
436   e f
437 }
438 @end lilypond
439
440
441 @node Overview of text markup commands
442 @subsection Overview of text markup commands
443
444 The following commands can all be used inside @code{\markup @{ @}}.
445
446 @include markup-commands.tely
447
448
449 @node Font selection
450 @subsection Font selection
451
452 @cindex font selection
453 @cindex font magnification
454 @funindex font-interface
455
456 By setting the object properties described below, you can select a
457 font from the preconfigured font families.  LilyPond has default
458 support for the feta music fonts. Text fonts are selected through
459 Pango/FontConfig. The serif font defaults to New Century Schoolbook,
460 the sans and typewriter to whatever the Pango installation defaults
461 to.
462
463
464 @itemize @bullet
465 @item @code{font-encoding}
466 is a symbol that sets layout of the glyphs.  This should only be set to
467 select different types of non-text fonts, e.g.
468
469 @code{fetaBraces} for piano staff braces, @code{fetaMusic} the
470 standard music font, including ancient glyphs, @code{fetaDynamic} for
471 dynamic signs and @code{fetaNumber} for the number font.
472
473 @item @code{font-family}
474 is a symbol indicating the general class of the typeface.  Supported are
475 @code{roman} (Computer Modern), @code{sans}, and @code{typewriter}.
476
477 @item @code{font-shape}
478 is a symbol indicating the shape of the font.  There are typically
479 several font shapes available for each font family.  Choices are
480 @code{italic}, @code{caps}, and @code{upright}.
481
482 @item @code{font-series}
483 is a symbol indicating the series of the font.  There are typically
484 several font series for each font family and shape.  Choices are
485 @code{medium} and @code{bold}.
486
487 @end itemize
488
489 Fonts selected in the way sketched above come from a predefined style
490 sheet. If you want to use a font from outside the style sheet,
491 then set the
492 @code{font-name} property,
493
494 @lilypond[fragment,verbatim]
495 {
496 %  \override Staff.TimeSignature #'font-name = #"Charter"
497 %  \override Staff.TimeSignature #'font-size = #2
498   \time 3/4
499   c'1_\markup {
500 %    \override #'(font-name . "Vera Bold")
501 %      { This text is in Vera Bold }
502   }
503 }
504 @end lilypond
505
506 @noindent
507 Any font can be used, as long as it is available to Pango/FontConfig.
508
509 The size of the font may be set with the @code{font-size}
510 property. The resulting size is taken relative to the
511 @code{text-font-size} as defined in the @code{\paper} block.
512
513 @cindex font size
514 @cindex font magnification
515
516
517 It is also possible to change the default font family for the entire
518 document. This is done by calling the @code{make-pango-font-tree} from
519 within the @code{\paper} block. The function takes names for the font
520 families to use for roman, sans serif and monospaced text. For
521 example,
522
523 @cindex font families, setting
524 @cindex Pango
525
526
527 @lilypond[verbatim]
528 \paper  {
529   myStaffSize = #20
530
531   #(define fonts
532     (make-pango-font-tree "Times New Roman"
533                           "Nimbus Sans"
534                           "Luxi Mono"
535                            (/ myStaffSize 20)))
536 }
537
538 {
539   c'^\markup { roman: foo \sans bla \typewriter bar }
540 }
541 @end lilypond
542
543 @c we don't do Helvetica / Courier, since GS incorrectly loads
544 @c Apple TTF fonts
545
546
547
548 @seealso
549
550 Examples: @inputfileref{input/@/regression,font@/-family@/-override.ly}.
551
552
553 @node New dynamic marks
554 @subsection New dynamic marks
555
556 It is possible to print new dynamic marks or text that should be aligned
557 with dynamics.  Use @code{make-dynamic-script} to create these
558 marks.  Note that the dynamic font only contains the characters
559 @code{f,m,p,r,s} and @code{z}.
560
561 Some situations (such as dynamic marks) have preset font-related
562 properties.  If you are creating text in such situations, it
563 is advisable to cancel those properties with
564 @code{normal-text}.  See @ref{Overview of text markup commands}
565 for more details.
566
567 @cindex make-dynamic-script
568
569 @lilypond[quote,verbatim,ragged-right]
570 sfzp = #(make-dynamic-script "sfzp")
571 \relative c' {
572   c4 c c\sfzp c
573 }
574 @end lilypond
575
576 @cindex Dynamics, editorial
577 @cindex Dynamics, parenthesis
578
579 It is also possible to print dynamics in round parenthesis or square
580 brackets.  These are often used for adding editorial dynamics.
581
582 @lilypond[quote,verbatim,ragged-right]
583 rndf = \markup{ \center-align {\line { \bold{\italic (}
584   \dynamic f \bold{\italic )} }} }
585 boxf = \markup{ \bracket { \dynamic f } }
586 { c'1_\rndf c'1_\boxf }
587 @end lilypond
588
589
590
591 @node Preparing parts
592 @section Preparing parts
593
594 This section describes various notation that are useful for preparing
595 individual parts.
596
597 @menu
598 * Multi measure rests::         
599 * Metronome marks::             
600 * Rehearsal marks::             
601 * Bar numbers::                 
602 * Instrument names::            
603 * Instrument transpositions::   
604 * Ottava brackets::             
605 * Different editions from one source::  
606 @end menu
607
608
609 @node Multi measure rests
610 @subsection Multi measure rests
611
612 @cindex multi measure rests
613 @cindex full measure rests
614 @cindex Rests, multi measure
615 @cindex Rests, full measure
616 @cindex whole rests for a full measure
617 @funindex R
618
619 Rests for one full measure (or many bars) are entered using `@code{R}'.  It
620 is specifically meant for full bar rests and for entering parts: the rest
621 can expand to fill a score with rests, or it can be printed as a single
622 multi-measure rest.  This expansion is controlled by the property
623 @code{Score.skipBars}.  If this is set to true, empty measures will not
624 be expanded, and the appropriate number is added automatically
625
626 @lilypond[quote,ragged-right,fragment,verbatim]
627 \time 4/4 r1 | R1 | R1*2 \time 3/4 R2. \time 2/4 R2 \time 4/4
628 \set Score.skipBars = ##t R1*17 R1*4
629 @end lilypond
630
631 The @code{1} in @code{R1} is similar to the duration notation used for
632 notes.  Hence, for time signatures other than 4/4, you must enter other
633 durations.  This can be done with augmentation dots or fractions
634
635 @lilypond[quote,ragged-right,fragment,verbatim]
636 \set Score.skipBars = ##t
637 \time 3/4
638 R2. | R2.*2
639 \time 13/8
640 R1*13/8
641 R1*13/8*12 |
642 \time 10/8 R4*5*4 |
643 @end lilypond
644
645 An @code{R} spanning a single measure is printed as either a whole rest
646 or a breve, centered in the measure regardless of the time signature.
647
648 If there are only a few measures of rest, LilyPond prints ``church rests''
649 (a series of rectangles) in the staff.  To replace that with a simple
650 rest, use @code{MultiMeasureRest.expand-limit}.
651
652 @lilypond[quote,ragged-right,fragment,verbatim]
653 \set Score.skipBars = ##t
654 R1*2 | R1*5 | R1*9
655 \override MultiMeasureRest #'expand-limit = 1
656 R1*2 | R1*5 | R1*9
657 @end lilypond
658
659 @cindex text on multi-measure rest
660 @cindex script on multi-measure rest
661 @cindex fermata on multi-measure rest
662
663 Texts can be added to multi-measure rests by using the
664 @var{note}-@code{markup} syntax @ref{Text markup}.
665 A variable (@code{\fermataMarkup}) is provided for
666 adding fermatas
667
668 @lilypond[quote,ragged-right,verbatim,fragment]
669 \set Score.skipBars = ##t
670 \time 3/4
671 R2.*10^\markup { \italic "ad lib." }
672 R2.^\fermataMarkup
673 @end lilypond
674
675 Warning!  This text is created by @code{MultiMeasureRestText}, not
676 @code{TextScript}.
677
678 @lilypond[quote,ragged-right,verbatim,fragment]
679 \override TextScript #'padding = #5
680 R1^"low"
681 \override MultiMeasureRestText #'padding = #5
682 R1^"high"
683 @end lilypond
684
685 If you want to have text on the left end of a multi-measure rest,
686 attach the text to a zero-length skip note, i.e.,
687
688 @example
689 s1*0^"Allegro"
690 R1*4
691 @end example
692
693
694 @seealso
695
696 Program reference: @internalsref{MultiMeasureRestMusicGroup},
697 @internalsref{MultiMeasureRest}.
698
699 The layout object @internalsref{MultiMeasureRestNumber} is for the
700 default number, and @internalsref{MultiMeasureRestText} for user
701 specified texts.
702
703
704 @refbugs
705
706 It is not possible to use fingerings (e.g., @code{R1-4}) to put numbers
707 over multi-measure rests.  And the pitch of multi-measure rests (or
708 staff-centered rests) can not be influenced.
709
710 @cindex condensing rests
711
712 There is no way to automatically condense multiple rests into a single
713 multi-measure rest.  Multi-measure rests do not take part in rest
714 collisions.
715
716 Be careful when entering multi-measure rests followed by whole
717 notes.  The following will enter two notes lasting four measures each
718 @example
719 R1*4 cis cis
720 @end example
721 When @code{skipBars} is set, the result will look OK, but the bar
722 numbering will be off.
723
724
725 @node Metronome marks
726 @subsection Metronome marks
727
728 @cindex Tempo
729 @cindex beats per minute
730 @cindex metronome marking
731
732 Metronome settings can be entered as follows
733 @example
734 \tempo @var{duration} = @var{per-minute}
735 @end example
736
737 In the MIDI output, they are interpreted as a tempo change.  In the
738 layout output, a metronome marking is printed
739 @funindex \tempo
740 @lilypond[quote,ragged-right,verbatim,fragment]
741 \tempo 8.=120 c''1
742 @end lilypond
743
744
745 @commonprop
746
747 To change the tempo in the MIDI output without printing anything, make
748 the metronome marking invisible
749 @example
750 \once \override Score.MetronomeMark #'transparent = ##t
751 @end example
752
753 To print other metronome markings, use these markup commands
754 @lilypond[quote,ragged-right,verbatim,relative,fragment]
755 c4^\markup {
756   (
757   \smaller \general-align #Y #DOWN \note #"16." #1
758   =
759   \smaller \general-align #Y #DOWN \note #"8" #1
760   ) }
761 @end lilypond
762
763 @noindent
764 See @ref{Text markup} for more details.
765
766
767 @seealso
768
769 Program reference: @internalsref{MetronomeMark}.
770
771
772 @refbugs
773
774 Collisions are not checked.  If you have notes above the top line of
775 the staff (or notes with articulations, slurs, text, etc), then the
776 metronome marking may be printed on top of musical symbols.  If this
777 occurs, increase the padding of the metronome mark to place it
778 further away from the staff.
779
780 @example
781 \override Score.MetronomeMark #'padding = #2.5
782 @end example
783
784
785 @node Rehearsal marks
786 @subsection Rehearsal marks
787
788 @cindex Rehearsal marks
789 @funindex \mark
790
791 To print a rehearsal mark, use the @code{\mark} command
792
793 @lilypond[quote,ragged-right,fragment,verbatim,relative=2]
794 c1 \mark \default
795 c1 \mark \default
796 c1 \mark #8
797 c1 \mark \default
798 c1 \mark \default
799 @end lilypond
800
801 @noindent
802 The letter@tie{}`I' is skipped in accordance with engraving traditions.
803 If you wish to include the letter `I', then use
804
805 @example
806 \set Score.markFormatter = #format-mark-alphabet
807 @end example
808
809 The mark is incremented automatically if you use @code{\mark
810 \default}, but you can also use an integer argument to set the mark
811 manually.  The value to use is stored in the property
812 @code{rehearsalMark}.
813
814 The style is defined by the property @code{markFormatter}.  It is a
815 function taking the current mark (an integer) and the current context
816 as argument.  It should return a markup object.  In the following
817 example, @code{markFormatter} is set to a canned procedure.  After a
818 few measures, it is set to function that produces a boxed number.
819
820 @lilypond[fragment,quote,ragged-right,verbatim,relative=2]
821 \set Score.markFormatter = #format-mark-numbers
822 c1 \mark \default
823 c1 \mark \default
824 \set Score.markFormatter = #format-mark-box-numbers
825 c1 \mark \default
826 c1 \mark \default
827 c1
828 @end lilypond
829
830 The file @file{scm/@/translation@/-functions@/.scm} contains the definitions
831 of @code{format-mark-numbers} (the default format),
832 @code{format-mark-box-numbers},
833 @code{format-mark-letters} and @code{format-mark-box-letters}.
834 These can be used as inspiration for other formatting functions.
835
836 You may use @code{format-mark-barnumbers}, @code{format-mark-box-barnumbers},
837 and @code{format-mark-circle-barnumbers} to get bar numbers instead of
838 incremented numbers or letters.
839
840 @cindex segno
841 @cindex coda
842 @cindex D.S al Fine
843
844 Music glyphs (such as the segno sign) may be printed inside
845 a @code{\mark}
846
847 @lilypond[fragment,quote,ragged-right,verbatim,relative]
848 c1 \mark \markup { \musicglyph #"scripts.segno" }
849 c1 \mark \markup { \musicglyph #"scripts.coda" }
850 c1 \mark \markup { \musicglyph #"scripts.ufermata" }
851 c1
852 @end lilypond
853
854 @noindent
855 See @ref{The Feta font} for a list of symbols which may be
856 printed with @code{\musicglyph}.
857
858 The horizontal location of rehearsal marks can be adjusted by
859 setting @code{break-align-symbol}
860
861 @lilypond[fragment,quote,ragged-right,verbatim,relative]
862 c1
863 \key cis \major
864 \clef alto
865 \override Score.RehearsalMark #'break-align-symbol = #'key-signature
866 \mark "on-key"
867 cis
868 \key ces \major
869 \override Score.RehearsalMark #'break-align-symbol = #'clef
870 \clef treble
871 \mark "on clef"
872 ces
873 @end lilypond
874
875 @code{break-align-symbol} may also accept the following values:
876 @code{ambitus}, @code{breathing-sign}, @code{clef}, @code{custos},
877 @code{staff-bar}, @code{left-edge}, @code{key-cancellation},
878 @code{key-signature}, and @code{time-signature}.  Setting
879 @code{break-align-symbol} will only have an effect if the symbol
880 appears at that point in the music.
881
882
883 @seealso
884
885 Program reference: @internalsref{RehearsalMark}.
886
887 Init files: @file{scm/@/translation@/-functions@/.scm} contains the
888 definition of @code{format-mark-numbers} and
889 @code{format-mark-letters}.  They can be used as inspiration for other
890 formatting functions.
891
892 Examples: @inputfileref{input/@/regression,rehearsal@/-mark@/-letter@/.ly},
893
894 @inputfileref{input/@/regression,rehearsal@/-mark@/-number@/.ly}.
895
896
897 @node Bar numbers
898 @subsection Bar numbers
899
900 @cindex Bar numbers
901 @cindex measure numbers
902 @funindex currentBarNumber
903
904 Bar numbers are printed by default at the start of the line.  The
905 number itself is stored in the @code{currentBarNumber} property, which
906 is normally updated automatically for every measure.
907
908 @lilypond[verbatim,ragged-right,quote,fragment,relative]
909 \repeat unfold 4 {c4 c c c} \break
910 \set Score.currentBarNumber = #50
911 \repeat unfold 4 {c4 c c c}
912 @end lilypond
913
914 Bar numbers may only be printed at bar lines; to print a bar
915 number at the beginning of a piece, an empty bar line must
916 be added
917
918 @lilypond[verbatim,ragged-right,quote,fragment,relative]
919 \set Score.currentBarNumber = #50
920 \bar ""
921 \repeat unfold 4 {c4 c c c} \break
922 \repeat unfold 4 {c4 c c c}
923 @end lilypond
924
925 Bar numbers can be typeset at regular intervals instead of at the
926 beginning of each line.  This is illustrated in the following example,
927 whose source is available as
928 @inputfileref{input/@/test,bar@/-number@/-regular@/-interval@/.ly}
929
930 @lilypondfile[ragged-right,quote]{bar-number-regular-interval.ly}
931
932 Bar numbers can be removed entirely by removing the Bar number
933 engraver from the score.
934
935 @lilypond[verbatim,ragged-right,quote]
936 \layout {
937   \context {
938     \Score
939     \remove "Bar_number_engraver"
940   }
941 }
942 \relative c''{
943 c4 c c c \break
944 c4 c c c
945 }
946 @end lilypond
947
948
949 @seealso
950
951 Program reference: @internalsref{BarNumber}.
952
953 Examples:
954 @inputfileref{input/@/test,bar@/-number@/-every@/-five@/-reset@/.ly},
955 and @inputfileref{input/@/test,bar@/-number@/-regular@/-interval@/.ly}.
956
957
958 @refbugs
959
960 Bar numbers can collide with the @internalsref{StaffGroup} bracket, if
961 there is one at the top.  To solve this, the
962 @code{padding} property of @internalsref{BarNumber} can be
963 used to position the number correctly.
964
965
966 @node Instrument names
967 @subsection Instrument names
968
969 In an orchestral score, instrument names are printed at the left side
970 of the staves.
971
972 This can be achieved by setting @internalsref{Staff}.@code{instrument}
973 and @internalsref{Staff}.@code{instr}.  This will print a string before
974 the start of the staff.  For the first staff, @code{instrument} is
975 used, for the following ones, @code{instr} is used.
976
977 @lilypond[quote,verbatim,ragged-right,relative=1,fragment]
978 \set Staff.instrument = "Ploink "
979 \set Staff.instr = "Plk "
980 c1
981 \break
982 c''
983 @end lilypond
984
985 You can also use markup texts to construct more complicated instrument
986 names, for example
987
988 @lilypond[quote,fragment,verbatim,ragged-right]
989 \set Staff.instrument = \markup {
990   \column { "Clarinetti"
991             \line { "in B" \smaller \flat } } }
992 c''1
993 @end lilypond
994
995 If you wish to center the instrument names, you must center all of them
996
997 @lilypond[quote,verbatim,ragged-right]
998 { <<
999 \new Staff {
1000   \set Staff.instrument = \markup {
1001     \center-align { "Clarinetti"
1002       \line { "in B" \smaller \flat } } }
1003   c''1
1004 }
1005 \new Staff {
1006   \set Staff.instrument = \markup{ \center-align { Vibraphone }}
1007   c''1
1008 }
1009 >>
1010 }
1011 @end lilypond
1012
1013 For longer instrument names, it may be useful to increase the
1014 @code{indent} setting in the @code{\layout} block.
1015
1016 To center instrument names while leaving extra space to the right,
1017
1018 @lilypond[quote,verbatim,ragged-right]
1019 \new StaffGroup \relative
1020 <<
1021   \new Staff {
1022     \set Staff.instrument
1023     = \markup { \hcenter-in #10 "blabla" }
1024     c1 c1
1025   }
1026   \new Staff {
1027     \set Staff.instrument
1028     = \markup { \hcenter-in #10 "blo" }
1029     c1 c1
1030   }
1031 >>
1032 @end lilypond
1033
1034
1035 @seealso
1036
1037 Program reference: @internalsref{InstrumentName}.
1038
1039 @refbugs
1040
1041 When you put a name on a grand staff or piano staff, the width of the
1042 brace is not taken into account. The following property setting can be
1043 used to move the instrument names to the left, in such situations.
1044
1045 @example
1046 \override Score.InstrumentName #'padding = #2.0
1047 @end example
1048
1049
1050 @node Instrument transpositions
1051 @subsection Instrument transpositions
1052
1053 @cindex transposition, MIDI
1054 @cindex transposition, instrument
1055
1056 The key of a transposing instrument can also be specified.  This
1057 applies to many wind instruments, for example, clarinets (B-flat, A, and
1058 E-flat), horn (F) and trumpet (B-flat, C, D, and E-flat).
1059
1060 The transposition is entered after the keyword @code{\transposition}
1061
1062 @example
1063 \transposition bes   %% B-flat clarinet
1064 @end example
1065
1066 @noindent
1067 This command sets the property @code{instrumentTransposition}.  The value of
1068 this property is used for MIDI output and quotations.  It does not
1069 affect how notes are printed in the current staff.  To change the printed
1070 output, see @ref{Transpose}.
1071
1072 The pitch to use for @code{\transposition} should correspond to the
1073 real sound heard when a @code{c'} written on the staff is played by the
1074 transposing instrument.  For example, when entering a score in
1075 concert pitch, typically all voices are entered in C, so
1076 they should be entered as
1077
1078 @example
1079 clarinet = @{
1080   \transposition c'
1081   ...
1082 @}
1083 saxophone = @{
1084   \transposition c'
1085   ...
1086 @}
1087 @end example
1088
1089 The command @code{\transposition} should be used when the music is
1090 entered from a (transposed) orchestral part.  For example, in
1091 classical horn parts, the tuning of the instrument is often changed
1092 during a piece.  When copying the notes from the part, use
1093 @code{\transposition}, e.g.,
1094
1095 @example
1096 \transposition d'
1097 c'4^"in D"
1098 ...
1099 \transposition g'
1100 c'4^"in G"
1101 ...
1102 @end example
1103
1104
1105 @node Ottava brackets
1106 @subsection Ottava brackets
1107
1108 `Ottava' brackets introduce an extra transposition of an octave for
1109 the staff.  They are created by invoking the function
1110 @code{set-octavation}
1111
1112 @cindex ottava
1113 @cindex 15ma
1114 @cindex octavation
1115
1116 @lilypond[quote,ragged-right,verbatim,fragment]
1117 \relative c''' {
1118   a2 b
1119   #(set-octavation 1)
1120   a b
1121   #(set-octavation 0)
1122   a b
1123 }
1124 @end lilypond
1125
1126 The @code{set-octavation} function also takes -1 (for 8va bassa) and 2
1127 (for 15ma) as arguments.  Internally the function sets the properties
1128 @code{ottavation} (e.g., to @code{"8va"}) and
1129 @code{centralCPosition}.  For overriding the text of the bracket, set
1130 @code{ottavation} after invoking @code{set-octavation}, i.e.,
1131
1132 @lilypond[quote,ragged-right,verbatim]
1133 {
1134   #(set-octavation 1)
1135   \set Staff.ottavation = #"8"
1136   c'''
1137 }
1138 @end lilypond
1139
1140
1141 @seealso
1142
1143 Program reference: @internalsref{OttavaBracket}.
1144
1145 Examples: @inputfileref{input/@/regression,ottava@/.ly},
1146 @inputfileref{input/@/regression,ottava@/-broken@/.ly}.
1147
1148
1149 @refbugs
1150
1151 @code{set-octavation} will get confused when clef changes happen
1152 during an octavation bracket.
1153
1154
1155 @node Different editions from one source
1156 @subsection Different editions from one source
1157
1158 @funindex \tag
1159 @cindex tag
1160
1161 The @code{\tag} command marks music expressions with a name.  These
1162 tagged expressions can be filtered out later.  With this mechanism it
1163 is possible to make different versions of the same music source.
1164
1165 In the following example, we see two versions of a piece of music, one
1166 for the full score, and one with cue notes for the instrumental part
1167
1168 @example
1169 c1
1170 <<
1171   \tag #'part <<
1172     R1 \\
1173     @{
1174       \set fontSize = #-1
1175       c4_"cue" f2 g4 @}
1176   >>
1177   \tag #'score R1
1178 >>
1179 c1
1180 @end example
1181
1182 The same can be applied to articulations, texts, etc.: they are
1183 made by prepending
1184 @example
1185 -\tag #@var{your-tag}
1186 @end example
1187 to an articulation, for example,
1188 @example
1189 c1-\tag #'part ^4
1190 @end example
1191
1192 This defines a note with a conditional fingering indication.
1193
1194 @cindex keepWithTag
1195 @cindex removeWithTag
1196 By applying the @code{\keepWithTag} and @code{\removeWithTag}
1197 commands, tagged expressions can be filtered.  For example,
1198 @example
1199 <<
1200   @var{the music}
1201   \keepWithTag #'score @var{the music}
1202   \keepWithTag #'part @var{the music}
1203 >>
1204 @end example
1205 would yield
1206
1207 @lilypondfile[ragged-right,quote]{tag-filter.ly}
1208
1209 The arguments of the @code{\tag} command should be a symbol
1210 (such as @code{#'score} or @code{#'part}), followed by a
1211 music expression.  It is possible to put multiple tags on
1212 a piece of music with multiple @code{\tag} entries,
1213
1214 @example
1215   \tag #'original-part \tag #'transposed-part @dots{}
1216 @end example
1217
1218
1219 @seealso
1220
1221 Examples: @inputfileref{input/@/regression,tag@/-filter@/.ly}.
1222
1223
1224 @refbugs
1225
1226 Multiple rests are not merged if you create the score with both tagged
1227 sections.
1228
1229
1230
1231 @node Orchestral music
1232 @section Orchestral music
1233
1234 Orchestral music involves some special notation, both in the full
1235 score and the individual parts.  This section explains how to tackle
1236 some common problems in orchestral music.
1237
1238 @menu
1239 * Automatic part combining::    
1240 * Hiding staves::               
1241 * Quoting other voices::        
1242 * Formatting cue notes::        
1243 * Aligning to cadenzas::        
1244 @end menu
1245
1246
1247 @node Automatic part combining
1248 @subsection Automatic part combining
1249 @cindex automatic part combining
1250 @cindex part combiner
1251
1252 Automatic part combining is used to merge two parts of music onto a
1253 staff.  It is aimed at typesetting orchestral scores.  When the two
1254 parts are identical for a period of time, only one is shown.  In
1255 places where the two parts differ, they are typeset as separate
1256 voices, and stem directions are set automatically.  Also, solo and
1257 @emph{a due} parts are identified and can be marked.
1258
1259 The syntax for part combining is
1260
1261 @example
1262 \partcombine @var{musicexpr1} @var{musicexpr2}
1263 @end example
1264
1265
1266 The following example demonstrates the basic functionality of the part
1267 combiner: putting parts on one staff, and setting stem directions and
1268 polyphony
1269
1270 @lilypond[quote,verbatim,ragged-right,fragment]
1271 \new Staff \partcombine
1272   \relative g' { g g a( b) c c r r }
1273   \relative g' { g g r4 r e e g g }
1274 @end lilypond
1275
1276 The first @code{g} appears only once, although it was
1277 specified twice (once in each part).  Stem, slur, and tie directions are
1278 set automatically, depending whether there is a solo or unisono.  The
1279 first part (with context called @code{one}) always gets up stems, and
1280 `Solo', while the second (called @code{two}) always gets down stems and
1281 `Solo II'.
1282
1283 If you just want the merging parts, and not the textual markings, you
1284 may set the property @code{printPartCombineTexts} to false
1285
1286 @lilypond[quote,verbatim,ragged-right,fragment,relative=2]
1287 \new Staff <<
1288   \set Staff.printPartCombineTexts = ##f
1289   \partcombine
1290     \relative g' { g a( b) r }
1291     \relative g' { g r4 r f }
1292 >>
1293 @end lilypond
1294
1295 To change the text that is printed for solos or merging, you may
1296 set the @code{soloText}, @code{soloIIText}, and @code{aDueText}
1297 properties.
1298
1299 @lilypond[quote,verbatim,ragged-right,fragment,relative=2]
1300 \new Staff <<
1301   \set Score.soloText = #"ichi"
1302   \set Score.soloIIText = #"ni"
1303   \set Score.aDueText = #"tachi"
1304   \partcombine
1305     \relative g' { g4 g a( b) r }
1306     \relative g' { g4 g r r f }
1307 >>
1308 @end lilypond
1309
1310 Both arguments to @code{\partcombine} will be interpreted as
1311 @internalsref{Voice} contexts.  If using relative octaves,
1312 @code{\relative} should be specified for both music expressions, i.e.,
1313
1314 @example
1315 \partcombine
1316   \relative @dots{} @var{musicexpr1}
1317   \relative @dots{} @var{musicexpr2}
1318 @end example
1319
1320 @noindent
1321 A @code{\relative} section that is outside of @code{\partcombine} has
1322 no effect on the pitches of @var{musicexpr1} and @var{musicexpr2}.
1323
1324 @seealso
1325
1326 Program reference: @internalsref{PartCombineMusic}.
1327
1328 @refbugs
1329
1330 When @code{printPartCombineTexts} is set, when the two voices play the
1331 same notes on and off, the part combiner may typeset @code{a2} more
1332 than once in a measure.
1333
1334 @code{\partcombine} cannot be inside @code{\times}.
1335
1336 @code{\partcombine} cannot be inside @code{\relative}.
1337
1338 Internally, the @code{\partcombine} interprets both arguments as
1339 @code{Voice}s named @code{one} and @code{two}, and then decides when
1340 the parts can be combined.  Consequently, if the arguments switch to
1341 differently named @internalsref{Voice} contexts, the events in those
1342 will be ignored.
1343
1344
1345 @node Hiding staves
1346 @subsection Hiding staves
1347
1348 @cindex Frenched scores
1349 @cindex Hiding staves
1350
1351 In orchestral scores, staff lines that only have rests are usually
1352 removed; this saves some space.  This style is called `French Score'.
1353 For @internalsref{Lyrics},
1354 @internalsref{ChordNames} and @internalsref{FiguredBass}, this is
1355 switched on by default.  When the lines of these contexts turn out
1356 empty after the line-breaking process, they are removed.
1357
1358 For normal staves, a specialized @internalsref{Staff} context is
1359 available, which does the same: staves containing nothing (or only
1360 multi-measure rests) are removed.  The context definition is stored in
1361 @code{\RemoveEmptyStaffContext} variable.  Observe how the second staff
1362 in this example disappears in the second line
1363
1364 @lilypond[quote,ragged-right,verbatim]
1365 \layout {
1366   \context { \RemoveEmptyStaffContext }
1367 }
1368
1369 {
1370   \relative c' <<
1371     \new Staff { e4 f g a \break c1 }
1372     \new Staff { c4 d e f \break R1 }
1373   >>
1374 }
1375 @end lilypond
1376
1377 The first system shows all staves in full.  If empty staves should be
1378 removed from the first system too, set @code{remove-first} to true in
1379 @internalsref{VerticalAxisGroup}.
1380
1381 @example
1382 \override Score.VerticalAxisGroup #'remove-first = ##t
1383 @end example
1384
1385 To remove other types of contexts, use @code{\AncientRemoveEmptyStaffContext}
1386 or @code{\RemoveEmptyRhythmicStaffContext}.
1387
1388 Another application is making ossia sections, i.e., alternative
1389 melodies on a separate piece of staff, with help of a Frenched
1390 staff.  See @inputfileref{input/@/test,ossia@/.ly} for an example.
1391
1392
1393 @node Quoting other voices
1394 @subsection Quoting other voices
1395
1396 @cindex cues
1397
1398 With quotations, fragments of other parts can be inserted into a part
1399 directly.  Before a part can be quoted, it must be marked especially as
1400 quotable.  This is done with the @code{\addquote} command.
1401
1402 @example
1403 \addquote @var{name} @var{music}
1404 @end example
1405
1406
1407 @noindent
1408 Here, @var{name} is an identifying string.  The @var{music} is any kind
1409 of music.  Here is an example of @code{\addquote}
1410
1411 @example
1412 \addquote clarinet \relative c' @{
1413   f4 fis g gis
1414 @}
1415 @end example
1416
1417 This command must be entered at toplevel, i.e., outside any music
1418 blocks.
1419
1420 After calling @code{\addquote}, the quotation may then be done with
1421 @code{\quoteDuring} or @code{\cueDuring},
1422
1423 @example
1424 \quoteDuring #@var{name} @var{music}
1425 @end example
1426
1427 During a part, a piece of music can be quoted with the @code{\quoteDuring}
1428 command.
1429
1430 @example
1431 \quoteDuring #"clarinet" @{ s2. @}
1432 @end example
1433
1434 This would cite three quarter notes (the duration of @code{s2.})  of
1435 the previously added @code{clarinet} voice.
1436
1437
1438 More precisely, it takes the current time-step of the part being
1439 printed, and extracts the notes at the corresponding point of the
1440 @code{\addquote}d voice.  Therefore, the argument to @code{\addquote}
1441 should be the entire part of the voice to be quoted, including any
1442 rests at the beginning.
1443
1444 Quotations take into account the transposition of both source and target
1445 instruments, if they are specified using the @code{\transposition} command.
1446
1447 @lilypond[quote,ragged-right,verbatim]
1448 \addquote clarinet \relative c' {
1449   \transposition bes
1450   f4 fis g gis
1451 }
1452
1453 {
1454   e'8 f'8 \quoteDuring #"clarinet" { s2 }
1455 }
1456 @end lilypond
1457
1458 The type of events that are present in cue notes can be trimmed with
1459 the @code{quotedEventTypes} property.  The default value is
1460 @code{(note-event rest-event)}, which means that only notes and
1461 rests of the cued voice end up in the @code{\quoteDuring}.
1462 Setting
1463
1464 @example
1465 \set Staff.quotedEventTypes =
1466        #'(note-event articulation-event dynamic-event)
1467 @end example
1468
1469 @noindent
1470 will quote notes (but no rests), together with scripts and dynamics.
1471
1472 @refbugs
1473
1474 Only the contents of the first @internalsref{Voice} occurring in an
1475 @code{\addquote} command will be considered for quotation, so
1476 @var{music} can not contain @code{\new} and @code{\context Voice}
1477 statements that would switch to a different Voice.
1478
1479 Quoting grace notes is broken and can even cause LilyPond to crash.
1480
1481 @seealso
1482
1483 In this manual: @ref{Instrument transpositions}.
1484
1485 Examples: @inputfileref{input/@/regression,quote@/.ly}
1486 @inputfileref{input/@/regression,quote@/-transposition@/.ly}
1487
1488 Program reference: @internalsref{QuoteMusic}.
1489
1490
1491 @node Formatting cue notes
1492 @subsection Formatting cue notes
1493
1494 @cindex cues, formatting
1495
1496 The previous section deals with inserting notes from another voice.
1497 There is a more advanced music function called @code{\cueDuring},
1498 which makes formatting cue notes easier.
1499
1500 The syntax is
1501
1502 @example
1503   \cueDuring #@var{name} #@var{updown} @var{music}
1504 @end example
1505
1506 This will insert notes from the part @var{name} into a
1507 @internalsref{Voice} called @code{cue}.  This happens simultaneously
1508 with @var{music}, which usually is a rest.  When the cue notes start,
1509 the staff in effect becomes polyphonic for a moment.  The argument
1510 @var{updown} determines whether the cue notes should be notated as a
1511 first or second voice.
1512
1513
1514 @lilypond[verbatim,ragged-right]
1515 smaller = {
1516   \set fontSize = #-2
1517   \override Stem #'length-fraction = #0.8
1518   \override Beam #'thickness = #0.384
1519   \override Beam #'length-fraction = #0.8
1520 }
1521
1522 \addquote clarinet \relative {
1523   R1*20
1524   r2 r8 c f f
1525 }
1526
1527 \new Staff \relative  <<
1528
1529   % setup a context for  cue  notes.
1530   \new Voice = "cue" { \smaller \skip 1*21 }
1531
1532   \set Score.skipBars = ##t
1533
1534   \new Voice {
1535     R1*20
1536     \cueDuring #"clarinet" #1 {
1537       R1
1538     }
1539     g4 g2.
1540   }
1541 >>
1542 @end lilypond
1543
1544
1545 Here are a couple of hints for successful cue notes
1546
1547 @itemize @bullet
1548 @item
1549 Cue notes have smaller font sizes.
1550 @item
1551  the cued part is marked with the instrument playing the cue.
1552 @item
1553  when the original part takes over again, this should be marked with
1554  the name of the original instrument.
1555
1556 @c really?  Are you sure about that last point?  I'll check after 3.0 -gp
1557
1558 @c Yes, this is good practice.  Otherwise, the start of the original
1559 @c part can only be seen from the font size.  This is not good enough
1560 @c for sight-reading.  It is possilbe to use other
1561 @c markers (e.g. a big close-bracket over the staff) to indicate the cue
1562 @c   notes are
1563 @c finished.
1564 @c -hwn
1565
1566
1567 Any other changes introduced by the cued part should also be
1568 undone.  For example, if the cued instrument plays in a different clef,
1569 the original clef should be stated once again.
1570
1571 @end itemize
1572
1573
1574 @node Aligning to cadenzas
1575 @subsection Aligning to cadenzas
1576
1577 In an orchestral context, cadenzas present a special problem:
1578 when constructing a score that includes a cadenza, all other
1579 instruments should skip just as many notes as the length of the
1580 cadenza, otherwise they will start too soon or too late.
1581
1582 A solution to this problem are the functions @code{mmrest-of-length}
1583 and @code{skip-of-length}.  These Scheme functions take a piece of music
1584 as argument, and generate a @code{\skip} or multi-rest, exactly as
1585 long as the piece.  The use of @code{mmrest-of-length} is demonstrated
1586 in the following example.
1587
1588 @lilypond[verbatim,ragged-right,quote]
1589 cadenza = \relative c' {
1590   c4 d8 << { e f g } \\ { d4. } >>
1591   g4 f2 g4 g
1592 }
1593
1594 \new GrandStaff <<
1595   \new Staff { \cadenza c'4 }
1596   \new Staff {
1597     #(ly:export (mmrest-of-length cadenza))
1598     c'4
1599   }
1600 >>
1601 @end lilypond
1602
1603
1604
1605
1606 @node Contemporary notation
1607 @section Contemporary notation
1608
1609 In the 20th century, composers have greatly expanded the musical
1610 vocabulary.  With this expansion, many innovations in musical notation
1611 have been tried.  The book ``Music Notation in the 20th century'' by
1612 Kurt Stone gives a comprehensive overview (see @ref{Literature
1613 list}).
1614
1615 This section describes notation that does
1616 not fit into traditional notation categories, such as pitches,
1617 tuplet beams, and articulation.  For contemporary notation
1618 that fits into traditional notation categories, such as
1619 microtones, nested tuplet beams, and unusual fermatas, please
1620 see those sections of the documentation.
1621
1622 @menu
1623 * Polymetric notation::         
1624 * Time administration::         
1625 * Proportional notation::       
1626 * Clusters::                    
1627 * Special noteheads::           
1628 * Feathered beams::             
1629 * Improvisation::               
1630 * Selecting notation font size::  
1631 @end menu
1632
1633
1634 @node Polymetric notation
1635 @subsection Polymetric notation
1636
1637 Double time signatures are not supported explicitly, but they can be
1638 faked.  In the next example, the markup for the time signature is
1639 created with a markup text.  This markup text is inserted in the
1640 @internalsref{TimeSignature} grob. See also
1641 @inputfileref{input/@/test,compound@/-time@/.ly}).
1642
1643 @lilypond[verbatim,ragged-right]
1644 % create 2/4 + 5/8
1645 tsMarkup =\markup {
1646   \override #'(baseline-skip . 2) \number {
1647     \column { "2" "4" }
1648     \lower #1 "+"
1649     \bracket \column { "5" "8" }
1650   }
1651 }
1652
1653 {
1654   \override Staff.TimeSignature #'stencil = #ly:text-interface::print
1655   \override Staff.TimeSignature #'text = #tsMarkup
1656   \time 3/2
1657   c'2 \bar ":" c'4 c'4.
1658 }
1659 @end lilypond
1660
1661 Each staff can also have its own time signature.  This is done by
1662 moving the @internalsref{Timing_translator} to the @internalsref{Staff}
1663 context.
1664
1665 @example
1666 \layout @{
1667   \context @{ \Score
1668      \remove "Timing_translator"
1669      \remove "Default_bar_line_engraver"
1670   @}
1671   \context @{
1672     \Staff
1673     \consists "Timing_translator"
1674     \consists "Default_bar_line_engraver"
1675   @}
1676
1677 @}
1678 @end example
1679
1680
1681 Now, each staff has its own time signature.
1682 @example
1683 <<
1684   \new Staff @{
1685     \time 3/4
1686     c4 c c | c c c |
1687   @}
1688   \new Staff @{
1689     \time 2/4
1690     c4 c | c c | c c
1691   @}
1692   \new Staff @{
1693     \time 3/8
1694     c4. c8 c c c4. c8 c c
1695   @}
1696 >>
1697 @end example
1698
1699 @lilypond[quote,ragged-right]
1700 \layout{
1701   \context{
1702      \Score
1703      \remove "Timing_translator"
1704      \remove "Default_bar_line_engraver"
1705     }
1706   \context{ \Staff
1707     \consists "Timing_translator"
1708     \consists "Default_bar_line_engraver"
1709   }
1710 }
1711
1712 \relative c' <<
1713   \new Staff {
1714     \time 3/4
1715     c4 c c | c c c |
1716   }
1717   \new Staff {
1718     \time 2/4
1719     c4 c | c c | c c
1720   }
1721   \new Staff {
1722     \time 3/8
1723     c4. c8 c c c4. c8 c c
1724   }
1725 >>
1726 @end lilypond
1727
1728
1729 A different form of polymetric notation is where note lengths have
1730 different values across staves.
1731
1732 This notation can be created by setting a common time signature for
1733 each staff but replacing it manually using
1734 @code{timeSignatureFraction} to the desired fraction.  Then the printed
1735 durations in each staff are scaled to the common time signature.
1736 The latter is done with @code{\compressMusic}, which is used similar
1737 to @code{\times}, but does not create a tuplet bracket. The syntax is
1738 @example
1739 \compressMusic #'(@var{numerator} . @var{denominator}) @var{musicexpr}
1740 @end example
1741
1742
1743
1744 In this example, music with the time signatures of 3/4, 9/8, and 10/8 are
1745 used in parallel.  In the second staff, shown durations are multiplied by
1746 2/3, so that 2/3 * 9/8 = 3/4, and in the third staff, shown durations are
1747 multiplied by 3/5, so that 3/5 * 10/8 = 3/4.
1748
1749 @lilypond[quote,ragged-right,verbatim,fragment]
1750 \relative c' { <<
1751   \new Staff {
1752     \time 3/4
1753     c4 c c | c c c |
1754   }
1755   \new Staff {
1756     \time 3/4
1757     \set Staff.timeSignatureFraction = #'(9 . 8)
1758     \compressMusic #'(2 . 3)
1759       \repeat unfold 6 { c8[ c c] }
1760   }
1761   \new Staff {
1762     \time 3/4
1763     \set Staff.timeSignatureFraction = #'(10 . 8)
1764     \compressMusic #'(3 . 5) {
1765       \repeat unfold 2 { c8[ c c] }
1766       \repeat unfold 2 { c8[ c] }
1767       | c4. c4. \times 2/3 { c8 c c } c4
1768     }
1769   }
1770 >> }
1771 @end lilypond
1772
1773
1774
1775
1776 @refbugs
1777
1778 When using different time signatures in parallel, the spacing is
1779 aligned vertically, but bar lines distort the regular spacing.
1780
1781
1782 @node Time administration
1783 @subsection Time administration
1784
1785 @cindex Time administration
1786
1787 Time is administered by the @internalsref{Time_signature_engraver},
1788 which usually lives in the @internalsref{Score} context.  The
1789 bookkeeping deals with the following variables
1790
1791 @table @code
1792 @item currentBarNumber
1793 The measure number.
1794
1795 @item measureLength
1796 The length of the measures in the current time signature.  For a 4/4
1797 time this is@tie{}1, and for 6/8 it is 3/4.
1798
1799 @item measurePosition
1800 The point within the measure where we currently are.  This quantity
1801 is reset to@tie{}0 whenever it exceeds @code{measureLength}.  When that
1802 happens, @code{currentBarNumber} is incremented.
1803
1804 @item timing
1805 If set to true, the above variables are updated for every time
1806 step.  When set to false, the engraver stays in the current measure
1807 indefinitely.
1808 @end table
1809
1810 Timing can be changed by setting any of these variables explicitly.
1811 In the next example, the 4/4 time signature is printed, but
1812 @code{measureLength} is set to 5/4.  After a while, the measure is
1813 shortened by 1/8, by setting @code{measurePosition} to 7/8 at 2/4
1814 in the measure, so the next bar line will fall at 2/4 + 3/8.  The
1815 3/8 arises because 5/4 normally has 10/8, but we have manually
1816 set the measure position to be 7/8 and 10/8 - 7/8 = 3/8.
1817
1818 @lilypond[quote,ragged-right,verbatim,relative,fragment]
1819 \set Score.measureLength = #(ly:make-moment 5 4)
1820 c1 c4
1821 c1 c4
1822 c4 c4
1823 \set Score.measurePosition = #(ly:make-moment 7 8)
1824 b8 b b
1825 c4 c1
1826 @end lilypond
1827
1828 @noindent
1829 As the example illustrates, @code{ly:make-moment n m} constructs a
1830 duration of n/m of a whole note.  For example, @code{ly:make-moment 1 8} is
1831 an eighth
1832 note duration and @code{ly:make-moment 7 16} is the duration of
1833 seven sixteenths notes.
1834
1835
1836 @node Proportional notation
1837 @subsection Proportional notation
1838 @cindex Proportional notation
1839
1840 Notes can be spaced proportional to their time-difference by
1841 assigning a duration to @code{proportionalNotationDuration}
1842
1843 @lilypond[quote,ragged-right,verbatim,relative=2,fragment]
1844 <<
1845   \set Score.proportionalNotationDuration = #(ly:make-moment 1 16)
1846   \new Staff { c8[ c c c c c]  c4 c2 r2 }
1847   \new Staff { c2  \times 2/3 { c8 c c } c4 c1 }
1848 >>
1849 @end lilypond
1850
1851
1852 @node Clusters
1853 @subsection Clusters
1854
1855 @cindex cluster
1856
1857 A cluster indicates a continuous range of pitches to be played.  They
1858 can be denoted as the envelope of a set of notes.  They are entered by
1859 applying the function @code{makeClusters} to a sequence of
1860 chords, e.g.,
1861 @lilypond[quote,ragged-right,relative=2,fragment,verbatim]
1862 \makeClusters { <c e > <b f'> }
1863 @end lilypond
1864
1865 The following example (from
1866 @inputfileref{input/@/regression,cluster@/.ly}) shows what the result
1867 looks like
1868
1869 @lilypondfile[ragged-right,quote]{cluster.ly}
1870
1871 Ordinary notes and clusters can be put together in the same staff,
1872 even simultaneously.  In such a case no attempt is made to
1873 automatically avoid collisions between ordinary notes and clusters.
1874
1875 @seealso
1876
1877 Program reference: @internalsref{ClusterSpanner},
1878 @internalsref{ClusterSpannerBeacon},
1879 @internalsref{Cluster_spanner_engraver}.
1880
1881 Examples: @inputfileref{input/@/regression,cluster@/.ly}.
1882
1883 @refbugs
1884
1885 Music expressions like @code{<< @{ g8 e8 @} a4 >>} are not printed
1886 accurately.  Use @code{<g a>8 <e a>8} instead.
1887
1888
1889 @node Special noteheads
1890 @subsection Special noteheads
1891
1892 @cindex note heads, special
1893
1894 Different noteheads are used by various instruments for various
1895 meanings -- crosses are used for ``parlato'' with vocalists, stopped
1896 notes on guitar; diamonds are used for harmonics on string instruments,
1897 etc.  There is a shorthand (@code{\harmonic}) for diamond shapes; the
1898 other notehead styles are produced by tweaking the property
1899
1900 @lilypond[ragged-right,relative=1,fragment,verbatim,quote]
1901 c4 d
1902 \override NoteHead #'style = #'cross
1903 e f
1904 \revert NoteHead #'style
1905 e d <c f\harmonic> <d a'\harmonic>
1906 @end lilypond
1907
1908 @noindent
1909 To see all notehead styles, please see
1910 @inputfileref{input/@/regression,note@/-head@/-style@/.ly}.
1911
1912
1913 @seealso
1914
1915 Program reference: @internalsref{NoteHead}.
1916
1917
1918 @node Feathered beams
1919 @subsection Feathered beams
1920
1921 Feathered beams are not supported natively, but they can be faked by
1922 forcing two beams to overlap.  Here is an example,
1923
1924 @c don't change relative setting witout changing positions!
1925 @lilypond[ragged-right,relative=1,fragment,verbatim,quote]
1926 \new Staff <<
1927   \new Voice
1928   {
1929     \stemUp
1930     \once \override Voice.Beam #'positions = #'(0 . 0.5)
1931     c8[ c c c c ]
1932   }
1933   \new Voice {
1934     \stemUp
1935     \once \override Voice.Beam #'positions = #'(0 . -0.5)
1936     c[ c c c c]
1937   }
1938 >>
1939 @end lilypond
1940
1941
1942 @node Improvisation
1943 @subsection Improvisation
1944
1945 Improvisation is sometimes denoted with slashed note heads.  Such note
1946 heads can be created by adding a @internalsref{Pitch_squash_engraver}
1947 to the @internalsref{Staff} or @internalsref{Voice} context.  Then, the
1948 following command
1949
1950 @example
1951 \set squashedPosition = #0
1952 \override NoteHead #'style = #'slash
1953 @end example
1954
1955 @noindent
1956 switches on the slashes.
1957
1958 There are shortcuts @code{\improvisationOn} (and an accompanying
1959 @code{\improvisationOff}) for this command sequence.  They are used in
1960 the following example
1961
1962 @lilypond[verbatim,ragged-right,quote]
1963 \new Staff \with {
1964   \consists Pitch_squash_engraver
1965 } \transpose c c' {
1966   e8 e g a a16(bes)(a8) g \improvisationOn
1967   e8
1968   ~e2~e8 f4 fis8
1969   ~fis2 \improvisationOff a16(bes) a8 g e
1970 }
1971 @end lilypond
1972
1973
1974 @node Selecting notation font size
1975 @subsection Selecting notation font size
1976
1977 The easiest method of setting the font size of any context is by
1978 setting the @code{fontSize} property.
1979
1980 @lilypond[quote,fragment,relative=1,verbatim]
1981 c8
1982 \set fontSize = #-4
1983 c f
1984 \set fontSize = #3
1985 g
1986 @end lilypond
1987
1988 @noindent
1989 It does not change the size of variable symbols, such as beams or
1990 slurs.
1991
1992 Internally, the @code{fontSize} context property will cause the
1993 @code{font-size} property to be set in all layout objects.  The value
1994 of @code{font-size} is a number indicating the size relative to the
1995 standard size for the current staff height.  Each step up is an
1996 increase of approximately 12% of the font size.  Six steps is exactly a
1997 factor two.  The Scheme function @code{magstep} converts a
1998 @code{font-size} number to a scaling factor.
1999
2000 @lilypond[quote,fragment,relative=1,verbatim]
2001 c8
2002 \override NoteHead #'font-size = #-4
2003 c f
2004 \override NoteHead #'font-size = #3
2005 g
2006 @end lilypond
2007
2008 Font size changes are achieved by scaling the design size that is
2009 closest to the desired size.  The standard font size (for
2010 @code{font-size} equals 0), depends on the standard staff height.  For
2011 a 20pt staff, a 10pt font is selected.
2012
2013 The @code{font-size} property can only be set on layout objects that
2014 use fonts. These are the ones supporting the
2015 @internalsref{font-interface} layout interface.
2016
2017 @refcommands
2018
2019 The following commands set @code{fontSize} for the current voice:
2020
2021 @funindex \tiny
2022 @code{\tiny},
2023 @funindex \small
2024 @code{\small},
2025 @funindex \normalsize
2026 @code{\normalsize}.
2027
2028
2029
2030 @node Educational use
2031 @section Educational use
2032
2033 With the amount of control that LilyPond offers, one can make great
2034 teaching tools in addition to great musical scores.
2035
2036 @menu
2037 * Balloon help::                
2038 * Blank music sheet::           
2039 * Hidden notes::                
2040 * Shape note heads::            
2041 * Easy Notation note heads::    
2042 * Analysis brackets::           
2043 * Coloring objects::            
2044 * Parentheses::                 
2045 @end menu
2046
2047 @node Balloon help
2048 @subsection Balloon help
2049
2050 Elements of notation can be marked and named with the help of a square
2051 balloon.  The primary purpose of this feature is to explain notation.
2052
2053 The following example demonstrates its use.
2054
2055 @lilypond[quote,verbatim,fragment,ragged-right,relative=2]
2056 \applyOutput #'Voice
2057   #(add-balloon-text 'NoteHead "heads, or tails?"
2058       '(1 . -3))
2059   c8
2060 @end lilypond
2061
2062 @noindent
2063 The function @code{add-balloon-text} takes the name of a grob, the
2064 label to print, and the position where to put the label relative to
2065 the object.  In the above example, the text ``heads or tails?'' ends
2066 3 spaces below and 1 space to the right of the marked head.
2067
2068 @cindex balloon
2069 @cindex notation, explaining
2070
2071 @seealso
2072
2073 Program reference: @internalsref{text-balloon-interface}.
2074
2075 Examples: @inputfileref{input/@/regression,balloon@/.ly}.
2076
2077
2078
2079
2080 @node Blank music sheet
2081 @subsection Blank music sheet
2082
2083 @cindex Sheet music, empty
2084 @cindex Staves, blank sheet
2085
2086 A blank music sheet can be produced also by using invisible notes, and
2087 removing @code{Bar_number_engraver}.
2088
2089
2090 @lilypond[quote,verbatim]
2091 emptymusic = {
2092   \repeat unfold 2 % Change this for more lines.
2093   { s1\break }
2094   \bar "|."
2095 }
2096 \new Score \with {
2097   \override TimeSignature #'transparent = ##t
2098   defaultBarType = #""
2099   \remove Bar_number_engraver
2100 } <<
2101   \new Staff \emptymusic
2102   \new TabStaff \emptymusic
2103 >>
2104 @end lilypond
2105
2106
2107 @node Hidden notes
2108 @subsection Hidden notes
2109
2110 @cindex Hidden notes
2111 @cindex Invisible notes
2112 @cindex Transparent notes
2113
2114 @funindex \hideNotes
2115 @funindex \unHideNotes
2116 Hidden (or invisible or transparent) notes can be useful in preparing theory
2117 or composition exercises.
2118
2119 @lilypond[quote,ragged-right,verbatim,relative=2,fragment]
2120 c4 d4
2121 \hideNotes
2122 e4 f4
2123 \unHideNotes
2124 g4 a
2125 @end lilypond
2126
2127
2128 @node Shape note heads
2129 @subsection Shape note heads
2130
2131 @cindex note heads, shape
2132
2133 In shape note head notation, the shape of the note head corresponds
2134 to the harmonic function of a note in the scale.  This notation was
2135 popular in the 19th century American song books.
2136
2137 Shape note heads can be produced by setting @code{\aikenHeads} or
2138 @code{\sacredHarpHeads}, depending on the style desired.
2139
2140 @lilypond[verbatim,relative=1,fragment]
2141   \aikenHeads
2142   c8 d4 e8 a2 g1
2143   \sacredHarpHeads
2144   c8 d4. e8 a2 g1
2145 @end lilypond
2146
2147 Shapes are determined on the step in the scale, where the base of the
2148 scale is determined by  the @code{\key} command
2149
2150 @funindex \key
2151 @funindex shapeNoteStyles
2152 @funindex \aikenHeads
2153 @funindex \sacredHarpHeads
2154
2155 Shape note heads are implemented through the @code{shapeNoteStyles}
2156 property.  Its value is a vector of symbols.  The k-th element indicates
2157 the style to use for the k-th step of the scale.  Arbitrary
2158 combinations are possible, e.g.
2159
2160 @lilypond[verbatim,relative=1,fragment]
2161   \set shapeNoteStyles  = ##(cross triangle fa #f mensural xcircle diamond)
2162   c8 d4. e8 a2 g1
2163 @end lilypond
2164
2165
2166 @node Easy Notation note heads
2167 @subsection Easy Notation note heads
2168
2169 @cindex note heads, practice
2170 @cindex note heads, easy notation
2171 @cindex easy notation
2172 @cindex Hal Leonard
2173
2174 The `easy play' note head includes a note name inside the head.  It is
2175 used in music for beginners
2176
2177 @lilypond[quote,ragged-right,verbatim,fragment,staffsize=26]
2178   \setEasyHeads
2179   c'2 e'4 f' | g'1
2180 @end lilypond
2181
2182 The command @code{\setEasyHeads} overrides settings for the
2183 @internalsref{NoteHead} object.  To make the letters readable, it has
2184 to be printed in a large font size.  To print with a larger font, see
2185 @ref{Setting global staff size}.
2186
2187 @refcommands
2188
2189 @funindex \setEasyHeads
2190 @code{\setEasyHeads}
2191
2192
2193 @node Analysis brackets
2194 @subsection Analysis brackets
2195 @cindex brackets
2196 @cindex phrasing brackets
2197 @cindex musicological analysis
2198 @cindex note grouping bracket
2199
2200 Brackets are used in musical analysis to indicate structure in musical
2201 pieces.  LilyPond supports a simple form of nested horizontal
2202 brackets.  To use this, add the @internalsref{Horizontal_bracket_engraver}
2203 to @internalsref{Staff} context.  A bracket is started with
2204 @code{\startGroup} and closed with @code{\stopGroup}
2205
2206 @lilypond[quote,ragged-right,verbatim]
2207 \score {
2208   \relative c'' {
2209     c4\startGroup\startGroup
2210     c4\stopGroup
2211     c4\startGroup
2212     c4\stopGroup\stopGroup
2213   }
2214   \layout {
2215     \context {
2216       \Staff \consists "Horizontal_bracket_engraver"
2217 }}}
2218 @end lilypond
2219
2220 @seealso
2221
2222 Program reference: @internalsref{HorizontalBracket}.
2223
2224 Examples: @inputfileref{input/@/regression,note@/-group@/-bracket@/.ly}.
2225
2226
2227 @node Coloring objects
2228 @subsection Coloring objects
2229
2230 Individual objects may be assigned colors.  You may use the
2231 color names listed in the @ref{List of colors}.
2232
2233 @lilypond[quote,ragged-right,verbatim,fragment,relative=1]
2234 \override NoteHead #'color = #red
2235 c4 c
2236 \override NoteHead #'color = #(x11-color 'LimeGreen)
2237 d
2238 \override Stem #'color = #blue
2239 e
2240 @end lilypond
2241
2242 The full range of colors defined for X11 can be accessed by using the
2243 Scheme function x11-color.  The function takes one argument that can be a
2244 symbol
2245
2246 @example
2247 \override Beam #'color = #(x11-color 'MediumTurquoise)
2248 @end example
2249
2250 or a string
2251
2252 @example
2253 \override Beam #'color = #(x11-color "MediumTurquoise")
2254 @end example
2255
2256 The first form is quicker to write and is more efficient.  However, using
2257 the second form it is possible to access X11 colors by the multi-word
2258 form of its name
2259
2260 @example
2261 \override Beam #'color = #(x11-color "medium turquoise")
2262 @end example
2263
2264 If x11-color cannot make sense of the parameter then the color returned
2265 defaults to black.  It should be obvious from the final score that
2266 something is wrong.
2267
2268 This example illustrates the use of x11-color.  Notice that the stem
2269 color remains black after being set to (x11-color 'Boggle), which is
2270 deliberate nonsense.
2271
2272 @lilypond[quote,ragged-right,verbatim]
2273 {
2274   \override Staff.StaffSymbol #'color = #(x11-color 'SlateBlue2)
2275   \set Staff.instrument = \markup {
2276     \with-color #(x11-color 'navy) "Clarinet"
2277   }
2278   \time 2/4
2279   gis''8 a''
2280   \override Beam #'color = #(x11-color "medium turquoise")
2281   gis'' a''
2282   \override NoteHead #'color = #(x11-color "LimeGreen")
2283   gis'' a''
2284   \override Stem #'color = #(x11-color 'Boggle)
2285   gis'' a''
2286 }
2287 @end lilypond
2288
2289
2290 @seealso
2291
2292 Appendix: @ref{List of colors}.
2293
2294
2295 @refbugs
2296 Not all x11 colors are distinguishable in a web browser.  For web use
2297 normal colors are recommended.
2298
2299 An x11 color is not necessarily exactly the same shade as a similarly
2300 named normal color.
2301
2302 Notes in a chord cannot be colored with @code{\override}; use
2303 @code{\tweak} instead.  See @ref{Objects connected to the input}
2304 for details.
2305
2306
2307 @node Parentheses
2308 @subsection Parentheses
2309
2310 @cindex ghost notes
2311 @cindex notes, ghost
2312 @cindex notes, parenthesized
2313
2314 Objects may be parenthesized by prefixing @code{\parenthesize} to the music
2315 event,
2316
2317 @lilypond[relative=2,fragment,verbatim,ragged-right]
2318 <
2319   c
2320   \parenthesize d
2321   g
2322 >4-\parenthesize -.
2323 @end lilypond
2324
2325 This only functions inside chords, even for single notes
2326
2327 @example
2328 < \parenthesize NOTE>
2329 @end example
2330
2331