]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/notation/editorial.itely
NR: Replace \set Staff.instrumentName
[lilypond.git] / Documentation / notation / editorial.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @ignore
3     Translation of GIT committish: FILL-IN-HEAD-COMMITTISH
4
5     When revising a translation, copy the HEAD committish of the
6     version that you are working on.  For details, see the Contributors'
7     Guide, node Updating translation committishes..
8 @end ignore
9
10 @c \version "2.19.21"
11
12 @node Editorial annotations
13 @section Editorial annotations
14
15 @lilypondfile[quote]{editorial-headword.ly}
16
17 This section discusses the various ways to change the appearance of
18 notes and add analysis or educational emphasis.
19
20 @menu
21 * Inside the staff::
22 * Outside the staff::
23 @end menu
24
25
26 @node Inside the staff
27 @subsection Inside the staff
28
29 This section discusses how to add emphasis to elements that are
30 inside the staff.
31
32 @menu
33 * Selecting notation font size::
34 * Fingering instructions::
35 * Hidden notes::
36 * Coloring objects::
37 * Parentheses::
38 * Stems::
39 @end menu
40
41 @node Selecting notation font size
42 @unnumberedsubsubsec Selecting notation font size
43
44 @cindex font size (notation) scaling
45 @cindex font size (notation)
46 @cindex selecting font size (notation)
47 @cindex notation font size
48 @cindex note heads
49
50 @funindex fontSize
51 @funindex font-size
52 @funindex magnification->font-size
53 @funindex magstep
54 @funindex magnifyMusic
55 @funindex teeny
56 @funindex tiny
57 @funindex small
58 @funindex normalsize
59 @funindex large
60 @funindex huge
61 @funindex \magnifyMusic
62 @funindex \teeny
63 @funindex \tiny
64 @funindex \normalsize
65 @funindex \small
66 @funindex \large
67 @funindex \huge
68
69 @warning{@*
70 For font sizes of text, see @ref{Selecting font and font size}.@*
71 For staff size, see @ref{Setting the staff size}.@*
72 For cue notes, see @ref{Formatting cue notes}.@*
73 For ossia staves, see @ref{Ossia staves}.}
74
75 To change the size of the notation without changing the staff
76 size, specify a magnification factor with the @code{\magnifyMusic}
77 command:
78
79 @c Grieg Piano Concerto (mvt.1 cadenza)
80 @lilypond[verbatim,quote]
81 \new Staff <<
82   \new Voice \relative {
83     \voiceOne
84     <e' e'>4 <f f'>8. <g g'>16 <f f'>8 <e e'>4 r8
85   }
86   \new Voice \relative {
87     \voiceTwo
88     \magnifyMusic 0.63 {
89       \override Score.SpacingSpanner.spacing-increment = #(* 1.2 0.63)
90       r32 c'' a c a c a c r c a c a c a c
91       r c a c a c a c a c a c a c a c
92     }
93   }
94 >>
95 @end lilypond
96
97 The @code{\override} in the example above is a bug workaround.
98 See the @qq{Known issues and warnings} at the end of this section.
99
100 If a normal sized note head is merged with a smaller one, the size
101 of the smaller note may need to be reset (with
102 @w{@samp{\once@tie{}\normalsize}}) so that the stems and
103 accidentals align properly:
104
105 @c Chopin Prelude op.28 no.8
106 @lilypond[verbatim,quote]
107 \new Staff <<
108   \key fis \minor
109   \mergeDifferentlyDottedOn
110   \new Voice \relative {
111     \voiceOne
112     \magnifyMusic 0.63 {
113       \override Score.SpacingSpanner.spacing-increment = #(* 1.2 0.63)
114       \once \normalsize cis'32( cis' gis b a fis \once \normalsize d d'
115       \once \normalsize cis, cis' gis b a gis \once \normalsize fis fis'
116       \once \normalsize fis, fis' ais, cis b gis \once \normalsize eis eis'
117       \once \normalsize a, a' bis, d cis b \once \normalsize gis gis')
118     }
119   }
120   \new Voice \relative {
121     \voiceTwo
122     cis'8. d16 cis8. fis16 fis8. eis16 a8. gis16
123   }
124 >>
125 @end lilypond
126
127 The @code{\magnifyMusic} command is not intended for cue notes,
128 grace notes, or ossia staves---there are more appropriate methods
129 of entering each of those constructs.  Instead, it is useful when
130 the notation size changes in a single instrumental part on one
131 staff, and where grace notes are not appropriate, such as in
132 cadenza-like passages or in cases such as the above examples.
133 Setting the @code{\magnifyMusic} value to 0.63 duplicates the
134 dimensions of the @code{CueVoice} context.
135
136 @warning{The @code{@bs{}magnifyMusic} command should @i{not} be
137 used when also resizing the staff.  See @ref{Setting the staff
138 size}.}
139
140
141 @subsubsubheading Resizing individual layout objects
142
143 An individual layout object can be resized by using the
144 @code{\tweak} or @code{\override} commands to adjust its
145 @code{font-size} property:
146
147 @lilypond[quote,verbatim]
148 \relative {
149   % resize a note head
150   <f' \tweak font-size -4 b e>-5
151   % resize a fingering
152   bes-\tweak font-size 0 -3
153   % resize an accidental
154   \once \override Accidental.font-size = -4 bes!-^
155   % resize an articulation
156   \once \override Script.font-size = 4 bes!-^
157 }
158 @end lilypond
159
160 The default @code{font-size} value for each layout object is
161 listed in the Internals Reference.  The @code{font-size} property
162 can only be set for layout objects that support the
163 @code{font-interface} layout interface.  If @code{font-size} is
164 not specified in the object's @q{Standard@tie{}settings} list, its
165 value is 0.  See @rinternals{All layout objects}.
166
167
168 @subsubsubheading Understanding the @code{fontSize} property
169
170 The @code{fontSize} context property adjusts the relative size of
171 all glyph-based notational elements in a context:
172
173 @lilypond[verbatim,quote]
174 \relative {
175   \time 3/4
176   d''4---5 c8( b a g) |
177   \set fontSize = -6
178   e'4-- c!8-4( b a g) |
179   \set fontSize = 0
180   fis4---3 e8( d) fis4 |
181   g2.
182 }
183 @end lilypond
184
185 The @code{fontSize} value is a number indicating the size relative
186 to the standard size for the current staff height.  The default
187 @code{fontSize} is 0; adding 6 to any @code{fontSize} value
188 doubles the printed size of the glyphs, and subtracting 6 halves
189 the size.  Each step increases the size by approximately 12%.
190
191 The scheme function @code{magnification->font-size} is provided
192 for convenience since the logarithmic units of the
193 @code{font-size} property are not entirely intuitive.  For
194 example, to adjust the musical notation to 75% of the default
195 size, use:
196
197 @example
198 \set fontSize = #(magnification->font-size 0.75)
199 @end example
200
201 The scheme function @code{magstep} does the opposite: it converts
202 a @code{font-size} value into a magnification factor.
203
204 The @code{fontSize} property will only affect notational elements
205 that are drawn with glyphs, such as noteheads, accidentals,
206 scripts, etc.  It will not affect the size of the staff itself,
207 nor will it scale stems, beams, or horizontal spacing.  To scale
208 stems, beams, and horizontal spacing along with the notation size
209 (without changing the staff size), use the @code{\magnifyMusic}
210 command discussed above.  To scale everything, including the staff
211 size, see @ref{Setting the staff size}.
212
213 Whenever the @code{fontSize} @i{context property} is set, its
214 value is added to the value of the @code{font-size} @i{grob
215 property} for individual layout objects, before any glyphs are
216 printed.  This can cause confusion when setting individual
217 @code{font-size} properties while @code{fontSize} is already set:
218
219 @lilypond[verbatim,quote,fragment]
220 % the default font-size for NoteHead is 0
221 % the default font-size for Fingering is -5
222 c''4-3
223
224 \set fontSize = -3
225 % the effective font size for NoteHead is now -3
226 % the effective font size for Fingering is now -8
227 c''4-3
228
229 \override Fingering.font-size = 0
230 % the effective font size for Fingering is now -3
231 c''4-3
232 @end lilypond
233
234 The following shorthand commands are also available:
235
236 @multitable @columnfractions .2 .4 .4
237 @item @b{Command} @tab @b{Equivalent to} @tab @b{Relative size}
238 @item @code{\teeny}      @tab @code{\set fontSize = -3} @tab 71%
239 @item @code{\tiny}       @tab @code{\set fontSize = -2} @tab 79%
240 @item @code{\small}      @tab @code{\set fontSize = -1} @tab 89%
241 @item @code{\normalsize} @tab @code{\set fontSize = 0} @tab 100%
242 @item @code{\large}      @tab @code{\set fontSize = 1} @tab 112%
243 @item @code{\huge}       @tab @code{\set fontSize = 2} @tab 126%
244 @end multitable
245
246 @lilypond[verbatim,quote]
247 \relative c'' {
248   \teeny
249   c4.-> d8---3
250   \tiny
251   c4.-> d8---3
252   \small
253   c4.-> d8---3
254   \normalsize
255   c4.-> d8---3
256   \large
257   c4.-> d8---3
258   \huge
259   c4.-> d8---3
260 }
261 @end lilypond
262
263
264 @cindex standard font size (notation)
265 @cindex font size (notation), standard
266
267 @funindex font-interface
268 @funindex font-size
269
270 Font size changes are achieved by scaling the design size that is
271 closest to the desired size.  The standard font size (for
272 @w{@code{font-size = 0}}) depends on the standard staff height.
273 For a 20pt staff, an 11pt font is selected.
274
275
276 @predefined
277 @code{\magnifyMusic},
278 @code{\teeny},
279 @code{\tiny},
280 @code{\small},
281 @code{\normalsize},
282 @code{\large},
283 @code{\huge}.
284 @endpredefined
285
286 @seealso
287 Notation Reference:
288 @ref{Selecting font and font size},
289 @ref{Setting the staff size},
290 @ref{Formatting cue notes},
291 @ref{Ossia staves}.
292
293 Installed Files:
294 @file{ly/music-functions-init.ly},
295 @file{ly/property-init.ly}.
296
297 Snippets:
298 @rlsr{Editorial annotations}.
299
300 Internals Reference:
301 @rinternals{font-interface}.
302
303 @c The two issues mentioned below:
304 @c http://code.google.com/p/lilypond/issues/detail?id=3987
305 @c http://code.google.com/p/lilypond/issues/detail?id=3990
306 @knownissues
307 There are currently two bugs that are preventing proper horizontal
308 spacing when using @code{\magnifyMusic}.  There is only one
309 available workaround, and it is not guaranteed to work in every
310 case.  In the example below, replace the @var{mag} variable with
311 your own value.  You may also try removing one or both of the
312 @code{\newSpacingSection} commands, and/or the @code{\override}
313 and @code{\revert} commands:
314
315 @example
316 \magnifyMusic @var{mag} @{
317   \newSpacingSection
318   \override Score.SpacingSpanner.spacing-increment = #(* 1.2 @var{mag})
319   [@var{music}]
320   \newSpacingSection
321   \revert Score.SpacingSpanner.spacing-increment
322 @}
323 @end example
324
325
326 @node Fingering instructions
327 @unnumberedsubsubsec Fingering instructions
328
329 @cindex fingering
330 @cindex finger change
331
332 @funindex \finger
333
334 Fingering instructions can be entered using
335 @samp{@var{note}-@var{digit}}:
336
337 @lilypond[verbatim,quote]
338 \relative { c''4-1 d-2 f-4 e-3 }
339 @end lilypond
340
341 Markup texts or strings may be used for finger changes.
342
343 @lilypond[verbatim,quote]
344 \relative {
345   c''4-1 d-2 f\finger \markup \tied-lyric #"4~3" c\finger "2 - 3"
346 }
347 @end lilypond
348
349 @cindex thumb-script
350
351 @funindex \thumb
352
353 A thumb-script can be added (e.g., cello music) to indicate
354 that a note should be played with the thumb.
355
356 @lilypond[verbatim,quote]
357 \relative { <a'_\thumb a'-3>2 <b_\thumb b'-3> }
358 @end lilypond
359
360 @cindex fingering chords
361 @cindex fingering instructions for chords
362 @cindex chords, fingering
363
364 Fingerings for chords can also be added to individual notes by
365 adding them after the pitches.
366
367 @lilypond[verbatim,quote]
368 \relative {
369   <c''-1 e-2 g-3 b-5>2 <d-1 f-2 a-3 c-5>
370 }
371 @end lilypond
372
373 Fingering instructions may be manually placed above or below the
374 staff, see @ref{Direction and placement}.
375
376 @snippets
377
378 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
379 {controlling-the-placement-of-chord-fingerings.ly}
380
381 @lilypondfile[verbatim,quote,texidoc,doctitle]
382 {allowing-fingerings-to-be-printed-inside-the-staff.ly}
383
384 @lilypondfile[verbatim,quote,texidoc,doctitle]
385 {avoiding-collisions-with-chord-fingerings.ly}
386
387 @seealso
388 Notation Reference:
389 @ref{Direction and placement}.
390
391 Snippets:
392 @rlsr{Editorial annotations}.
393
394 Internals Reference:
395 @rinternals{FingeringEvent},
396 @rinternals{fingering-event},
397 @rinternals{Fingering_engraver},
398 @rinternals{New_fingering_engraver},
399 @rinternals{Fingering}.
400
401
402 @node Hidden notes
403 @unnumberedsubsubsec Hidden notes
404
405 @cindex hidden notes
406 @cindex invisible notes
407 @cindex transparent notes
408 @cindex notes, hidden
409 @cindex notes, invisible
410 @cindex notes, transparent
411
412 @funindex \hideNotes
413 @funindex \unHideNotes
414
415 Hidden (or invisible or transparent) notes can be useful in
416 preparing theory or composition exercises.
417
418 @lilypond[verbatim,quote]
419 \relative {
420   c''4 d
421   \hideNotes
422   e4 f
423   \unHideNotes
424   g a
425   \hideNotes
426   b
427   \unHideNotes
428   c
429 }
430 @end lilypond
431
432 Note heads, stems, and flags, and rests are invisible.  Beams
433 are invisible if they start on a hidden note.  Objects that are
434 attached to invisible notes are still visible.
435
436 @lilypond[verbatim,quote]
437 \relative c'' {
438   e8(\p f g a)--
439   \hideNotes
440   e8(\p f g a)--
441 }
442 @end lilypond
443
444
445 @predefined
446 @code{\hideNotes},
447 @code{\unHideNotes}.
448 @endpredefined
449
450 @seealso
451 Learning Manual:
452 @rlearning{Visibility and color of objects}.
453
454 Notation Reference:
455 @ref{Invisible rests},
456 @ref{Visibility of objects},
457 @ref{Hiding staves}.
458
459 Snippets:
460 @rlsr{Editorial annotations}.
461
462 Internals Reference:
463 @rinternals{Note_spacing_engraver},
464 @rinternals{NoteSpacing}.
465
466
467 @node Coloring objects
468 @unnumberedsubsubsec Coloring objects
469
470 @cindex colored objects
471 @cindex objects, colored
472 @cindex colors
473 @cindex coloring objects
474 @cindex colored notes
475 @cindex coloring notes
476 @cindex notes, colored
477 @cindex x11 color
478 @cindex x11-color
479 @cindex with-color
480
481 @funindex color
482 @funindex \with-color
483 @funindex x11-color
484
485 Individual objects may be assigned colors.  Valid color names
486 are listed in the @ref{List of colors}.
487
488 @lilypond[verbatim,quote,fragment]
489 \override NoteHead.color = #red
490 c''4 c''
491 \override NoteHead.color = #(x11-color 'LimeGreen)
492 d''
493 \override Stem.color = #blue
494 e''
495 @end lilypond
496
497
498 The full range of colors defined for X11 can be accessed by using
499 the Scheme function @code{x11-color}.  The function takes one
500 argument; this can be a symbol in the form @code{'@var{FooBar}} or
501 a string in the form @code{"@var{FooBar}"}.  The first form is
502 quicker to write and is more efficient.  However, using the second
503 form it is possible to access X11 colors by the multi-word form of
504 its name.
505
506 If @code{x11-color} cannot make sense of the parameter then the
507 color returned defaults to black.
508
509 @lilypond[verbatim,quote]
510 \new Staff \with {
511   instrumentName = \markup {
512     \with-color #(x11-color 'red) "Clarinet"
513     }
514   }
515   \relative c'' {
516   \override Staff.StaffSymbol.color = #(x11-color 'SlateBlue2)
517   gis8 a
518   \override Beam.color = #(x11-color "medium turquoise")
519   gis a
520   \override Accidental.color = #(x11-color 'DarkRed)
521   gis a
522   \override NoteHead.color = #(x11-color "LimeGreen")
523   gis a
524   % this is deliberate nonsense; note that the stems remain black
525   \override Stem.color = #(x11-color 'Boggle)
526   b2 cis
527 }
528 @end lilypond
529
530 @cindex rgb-color
531 @cindex color, rgb
532 @cindex rgb color
533
534 @funindex rgb-color
535
536 Exact RGB colors can be specified using the Scheme function
537 @code{rgb-color}.
538
539 @lilypond[verbatim,quote]
540 \new Staff \with {
541   instrumentName = \markup {
542     \with-color #(x11-color 'red) "Clarinet"
543     }
544   }
545 \relative c'' {
546   \override Staff.StaffSymbol.color = #(x11-color 'SlateBlue2)
547   \override Stem.color = #(rgb-color 0 0 0)
548   gis8 a
549   \override Stem.color = #(rgb-color 1 1 1)
550   gis8 a
551   \override Stem.color = #(rgb-color 0 0 0.5)
552   gis4 a
553 }
554 @end lilypond
555
556 @seealso
557 Notation Reference:
558 @ref{List of colors}, @ref{The
559 tweak command}.
560
561 Snippets:
562 @rlsr{Editorial annotations}.
563
564 @cindex x11 color
565 @cindex colored notes in chords
566 @cindex notes, colored in chords
567 @cindex color in chords
568
569 @funindex x11-color
570
571 @knownissues
572 An X11 color is not necessarily exactly the same shade as a
573 similarly named normal color.
574
575 Not all X11 colors are distinguishable in a web browser, i.e.,
576 a web browser might not display a difference between @code{LimeGreen}
577 and @code{ForestGreen}.  For web use normal colors are recommended
578 (i.e., @code{blue}, @code{green}, @code{red}).
579
580 Notes in a chord cannot be separately colored with
581 @code{\override}; use @code{\tweak} or the equivalent
582 @code{\single\override} before the respective note instead, see
583 @ref{The tweak command}.
584
585
586 @node Parentheses
587 @unnumberedsubsubsec Parentheses
588
589 @cindex ghost notes
590 @cindex notes, ghost
591 @cindex notes, parenthesized
592 @cindex parentheses
593 @cindex brackets
594
595 @funindex \parenthesize
596
597 Objects may be parenthesized by prefixing @code{\parenthesize} to
598 the music event.  When prefixed to a chord, it parenthesizes every
599 note.  Individual notes inside a chord may also be parenthesized.
600
601 @lilypond[verbatim,quote]
602 \relative {
603   c''2 \parenthesize d
604   c2 \parenthesize <c e g>
605   c2 <c \parenthesize e g>
606 }
607 @end lilypond
608
609 Non-note objects may be parenthesized as well.  For articulations,
610 a hyphen is needed before the @code{\parenthesize} command.
611
612 @lilypond[verbatim,quote]
613 \relative {
614   c''2-\parenthesize -. d
615   c2 \parenthesize r
616 }
617 @end lilypond
618
619 @seealso
620 Snippets:
621 @rlsr{Editorial annotations}.
622
623 Internals Reference:
624 @rinternals{Parenthesis_engraver},
625 @rinternals{ParenthesesItem},
626 @rinternals{parentheses-interface}.
627
628 @knownissues
629 Parenthesizing a chord prints parentheses around each individual
630 note, instead of a single large parenthesis around the entire
631 chord.
632
633
634 @node Stems
635 @unnumberedsubsubsec Stems
636
637 @cindex stem
638 @cindex stem, invisible
639 @cindex invisible stem
640
641 @funindex \stemUp
642 @funindex \stemDown
643 @funindex \stemNeutral
644 @cindex stem, direction
645 @cindex stem, up
646 @cindex stem, down
647 @cindex stem, neutral
648
649 Whenever a note is found, a @code{Stem} object is created
650 automatically.  For whole notes and rests, they are also created but
651 made invisible.
652
653 Stems may be manually placed to point up or down; see
654 @ref{Direction and placement}.
655
656
657 @predefined
658 @code{\stemUp},
659 @code{\stemDown},
660 @code{\stemNeutral}.
661 @endpredefined
662
663
664 @snippets
665
666 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
667 {default-direction-of-stems-on-the-center-line-of-the-staff.ly}
668
669 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
670 {automatically-changing-the-stem-direction-of-the-middle-note-based-on-the-melody.ly}
671
672 @seealso
673 Notation Reference:
674 @ref{Direction and placement}.
675
676 Snippets:
677 @rlsr{Editorial annotations}.
678
679 Internals Reference:
680 @rinternals{Stem_engraver},
681 @rinternals{Stem},
682 @rinternals{stem-interface}.
683
684
685 @node Outside the staff
686 @subsection Outside the staff
687
688 This section discusses how to add emphasis to elements in the staff
689 from outside of the staff.
690
691 @menu
692 * Balloon help::
693 * Grid lines::
694 * Analysis brackets::
695 @end menu
696
697 @node Balloon help
698 @unnumberedsubsubsec Balloon help
699
700 @cindex balloon
701 @cindex notation, explaining
702 @cindex balloon help
703 @cindex help, balloon
704
705 @funindex \balloonGrobText
706 @funindex \balloonText
707 @funindex Balloon_engraver
708 @funindex balloonGrobText
709 @funindex balloonText
710 @funindex \balloonLengthOn
711 @funindex \balloonLengthOff
712
713 Elements of notation can be marked and named with the help of a
714 square balloon.  The primary purpose of this feature is to explain
715 notation.
716
717 @lilypond[verbatim,quote]
718 \new Voice \with { \consists "Balloon_engraver" }
719 \relative c'' {
720   \balloonGrobText #'Stem #'(3 . 4) \markup { "I'm a Stem" }
721   a8
722   \balloonGrobText #'Rest #'(-4 . -4) \markup { "I'm a rest" }
723   r
724   <c, g'-\balloonText #'(-2 . -2) \markup { "I'm a note head" } c>2.
725 }
726 @end lilypond
727
728
729 There are two music functions, @code{balloonGrobText} and
730 @code{balloonText};  the former is used like
731 @w{@code{\once \override}} to attach text to any grob, and the
732 latter is used like @code{\tweak}, typically within chords, to
733 attach text to an individual note.
734
735 Balloon text does not influence note spacing, but this can be altered:
736
737 @lilypond[verbatim,quote]
738 \new Voice \with { \consists "Balloon_engraver" }
739 \relative c'' {
740   \balloonGrobText #'Stem #'(3 . 4) \markup { "I'm a Stem" }
741   a8
742   \balloonGrobText #'Rest #'(-4 . -4) \markup { "I'm a rest" }
743   r
744   \balloonLengthOn
745   <c, g'-\balloonText #'(-2 . -2) \markup { "I'm a note head" } c>2.
746 }
747 @end lilypond
748
749 @predefined
750 @code{\balloonLengthOn},
751 @code{\balloonLengthOff}.
752 @endpredefined
753
754 @seealso
755 Snippets:
756 @rlsr{Editorial annotations}.
757
758 Internals Reference:
759 @rinternals{Balloon_engraver},
760 @rinternals{BalloonTextItem},
761 @rinternals{balloon-interface}.
762
763
764 @node Grid lines
765 @unnumberedsubsubsec Grid lines
766
767 @cindex grid lines
768 @cindex lines, grid
769 @cindex vertical lines between staves
770 @cindex lines, vertical between staves
771
772 @funindex Grid_point_engraver
773 @funindex Grid_line_span_engraver
774 @funindex gridInterval
775
776 Vertical lines can be drawn between staves synchronized with the
777 notes.
778
779 The @code{Grid_point_engraver} must be used to create the end
780 points of the lines, while the @code{Grid_line_span_engraver} must
781 be used to actually draw the lines.  By default this centers grid
782 lines horizontally below and to the left side of each note head.
783 Grid lines extend from the middle lines of each staff.  The
784 @code{gridInterval} must specify the duration between the grid
785 lines.
786
787 @lilypond[verbatim,quote]
788 \layout {
789   \context {
790     \Staff
791     \consists "Grid_point_engraver"
792     gridInterval = #(ly:make-moment 1/4)
793   }
794   \context {
795     \Score
796     \consists "Grid_line_span_engraver"
797   }
798 }
799
800 \score {
801   \new ChoirStaff <<
802     \new Staff \relative {
803       \stemUp
804       c''4. d8 e8 f g4
805     }
806     \new Staff \relative {
807       \clef bass
808       \stemDown
809       c4 g' f e
810     }
811   >>
812 }
813 @end lilypond
814
815 @snippets
816
817 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
818 {grid-lines--changing-their-appearance.ly}
819
820 @seealso
821 Snippets:
822 @rlsr{Editorial annotations}.
823
824 Internals Reference:
825 @rinternals{Grid_line_span_engraver},
826 @rinternals{Grid_point_engraver},
827 @rinternals{GridLine},
828 @rinternals{GridPoint},
829 @rinternals{grid-line-interface},
830 @rinternals{grid-point-interface}.
831
832
833 @node Analysis brackets
834 @unnumberedsubsubsec Analysis brackets
835
836 @cindex brackets
837 @cindex bracket, phrasing
838 @cindex phrasing bracket
839 @cindex musicological analysis
840 @cindex analysis, musicological
841 @cindex note grouping bracket
842 @cindex horizontal bracket
843 @cindex bracket, horizontal
844
845 @funindex Horizontal_bracket_engraver
846 @funindex \startGroup
847 @funindex \stopGroup
848
849 Brackets are used in musical analysis to indicate structure in musical
850 pieces.  Simple horizontal brackets are supported.
851
852 @lilypond[verbatim,quote]
853 \layout {
854   \context {
855     \Voice
856     \consists "Horizontal_bracket_engraver"
857   }
858 }
859 \relative {
860   c''2\startGroup
861   d\stopGroup
862 }
863 @end lilypond
864
865 Analysis brackets may be nested.
866
867 @lilypond[verbatim,quote]
868 \layout {
869   \context {
870     \Voice
871     \consists "Horizontal_bracket_engraver"
872   }
873 }
874 \relative {
875   c''4\startGroup\startGroup
876   d4\stopGroup
877   e4\startGroup
878   d4\stopGroup\stopGroup
879 }
880 @end lilypond
881
882 @seealso
883 Snippets:
884 @rlsr{Editorial annotations}.
885
886 Internals Reference:
887 @rinternals{Horizontal_bracket_engraver},
888 @rinternals{HorizontalBracket},
889 @rinternals{horizontal-bracket-interface},
890 @rinternals{Staff}.