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