]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/notation/text.itely
Doc: Couple of Typos and line break fixes
[lilypond.git] / Documentation / notation / text.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.13.36"
11
12 @node Text
13 @section Text
14
15 @lilypondfile[quote]{text-headword.ly}
16
17 This section explains how to include text (with various
18 formatting) in music scores.
19
20 @noindent
21 Some text elements that are not dealt with here are discussed in other
22 specific sections: @ref{Vocal music}, @ref{Titles and headers}.
23
24 @menu
25 * Writing text::
26 * Formatting text::
27 * Fonts::
28 @end menu
29
30 @node Writing text
31 @subsection Writing text
32
33 This section introduces different ways of adding text to a score.
34
35 @cindex Text, other languages
36 @warning{To write accented and special text (such as characters
37 from other languages), simply insert the characters directly into
38 the LilyPond file.  The file must be saved as UTF-8.  For more
39 information, see @ref{Text encoding}.}
40
41 @menu
42 * Text scripts::
43 * Text spanners::
44 * Text marks::
45 * Separate text::
46 @end menu
47
48
49 @node Text scripts
50 @unnumberedsubsubsec Text scripts
51
52 @cindex Text scripts
53 @cindex text items, non-empty
54 @cindex non-empty texts
55 @cindex quoted text
56
57 Simple @qq{quoted text} indications may be added to a score, as
58 demonstrated in the following example.  Such indications may be
59 manually placed above or below the staff, using the syntax described
60 in @ref{Direction and placement}.
61
62 @lilypond[quote,verbatim,relative=2]
63 a8^"pizz." g f e a4-"scherz." f
64 @end lilypond
65
66 This syntax is actually a shorthand; more complex text
67 formatting may be added to a note by explicitly using a
68 @code{\markup} block, as described in @ref{Formatting text}.
69
70 @lilypond[quote,verbatim,relative=2]
71 a8^\markup { \italic pizz. } g f e
72 a4_\markup { \tiny scherz. \bold molto } f
73 @end lilypond
74
75 By default, text indications do not influence the note spacing.
76 However, their widths can be taken into account:
77 in the following example, the first text string does not affect
78 spacing, whereas the second one does.
79
80 @lilypond[quote,verbatim,relative=2]
81 a8^"pizz." g f e
82 \textLengthOn
83 a4_"scherzando" f
84 @end lilypond
85
86 In addition to text scripts, articulations can be attached to notes.
87 For more information, see @ref{Articulations and ornamentations}.
88
89 For more information about the relative ordering of text scripts and
90 articulations, see @rlearning{Placement of objects}.
91
92 @funindex \textLengthOn
93 @funindex textLengthOn
94 @funindex \textLengthOff
95 @funindex textLengthOff
96
97 @predefined
98 @code{\textLengthOn},
99 @code{\textLengthOff}.
100 @endpredefined
101
102
103 @seealso
104 Learning Manual:
105 @rlearning{Placement of objects}.
106
107 Notation Reference:
108 @ref{Formatting text},
109 @ref{Direction and placement}.
110
111 Snippets:
112 @rlsr{Text}.
113
114 Internals Reference:
115 @rinternals{TextScript}.
116
117
118 @cindex text outside margin
119 @cindex margin, text running over
120 @cindex text, keeping inside margin
121 @cindex lyrics, keeping inside margin
122
123
124 @knownissues
125
126 Checking to make sure that text scripts and lyrics are within the
127 margins is a relatively large computational task.  To speed up
128 processing, LilyPond does not perform such calculations by
129 default; to enable it, use
130
131 @example
132 \override Score.PaperColumn #'keep-inside-line = ##t
133 @end example
134
135
136 @node Text spanners
137 @unnumberedsubsubsec Text spanners
138
139 @cindex text spanners
140
141 Some performance indications, e.g., @notation{rallentando} or
142 @notation{accelerando}, are written as text and are extended over
143 multiple notes with dotted lines.  Such objects, called
144 @qq{spanners}, may be created from one note to another using the
145 following syntax:
146
147 @lilypond[verbatim,quote,relative=2]
148 \override TextSpanner #'(bound-details left text) = "rit."
149 b1\startTextSpan
150 e,\stopTextSpan
151 @end lilypond
152
153 @cindex text spanners, formatting
154 @cindex formatting text spanners
155
156 @noindent
157 The string to be printed is set through object properties.  By default
158 it is printed in italic characters, but different formatting can be
159 obtained using @code{\markup} blocks, as described in
160 @ref{Formatting text}.
161
162 @lilypond[quote,relative=2,verbatim]
163 \override TextSpanner #'(bound-details left text) =
164   \markup { \upright "rit." }
165 b1\startTextSpan c
166 e,\stopTextSpan
167 @end lilypond
168
169 The line style, as well as the text string, can be defined as an
170 object property.  This syntax is described in @ref{Line styles}.
171
172 @funindex \textSpannerUp
173 @funindex textSpannerUp
174 @funindex \textSpannerDown
175 @funindex textSpannerDown
176 @funindex \textSpannerNeutral
177 @funindex textSpannerNeutral
178
179
180 @predefined
181 @code{\textSpannerUp},
182 @code{\textSpannerDown},
183 @code{\textSpannerNeutral}.
184 @endpredefined
185
186 @knownissues
187 LilyPond is only able to handle one text spanner per voice.
188
189 @snippets
190
191 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
192 {dynamics-text-spanner-postfix.ly}
193
194 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
195 {dynamics-custom-text-spanner-postfix.ly}
196
197 @seealso
198 Notation Reference:
199 @ref{Line styles},
200 @ref{Dynamics}.
201
202 Snippets:
203 @rlsr{Text},
204 @rlsr{Expressive marks}.
205
206 Internals Reference:
207 @rinternals{TextSpanner}.
208
209
210 @node Text marks
211 @unnumberedsubsubsec Text marks
212
213
214 @cindex text marks
215 @cindex marks, text
216 @cindex text on bar line
217 @cindex coda on bar line
218 @cindex segno on bar line
219 @cindex fermata on bar line
220 @cindex bar lines, symbols on
221
222 @funindex \mark
223 @funindex mark
224 @funindex \markup
225 @funindex markup
226
227 Various text elements may be added to a score using
228 the syntax described in @ref{Rehearsal marks}:
229
230 @c \mark needs to be placed on a separate line (it's not
231 @c attached to an object like \markup is). -vv
232
233 @lilypond[verbatim,quote,relative=2]
234 c4
235 \mark "Allegro"
236 c c c
237 @end lilypond
238
239 This syntax makes it possible to put any text on a bar line;
240 more complex text formatting may be added using a @code{\markup}
241 block, as described in @ref{Formatting text}:
242
243 @lilypond[quote,verbatim,relative=1]
244 <c e>1
245 \mark \markup { \italic { colla parte } }
246 <d f>2 <e g>
247 <c f aes>1
248 @end lilypond
249
250 @noindent
251 This syntax also allows to print special signs, like coda, segno
252 or fermata, by specifying the appropriate symbol name as explained in
253 @ref{Music notation inside markup}:
254
255 @lilypond[quote,verbatim,relative=2]
256 <bes f>2 <aes d>
257 \mark \markup { \musicglyph #"scripts.ufermata" }
258 <e g>1
259 @end lilypond
260
261 @noindent
262 Such objects are only typeset above the top staff of the score; depending on
263 whether they are specified at the end or the middle of a bar, they
264 can be placed above the bar line or between notes.  When specified at a
265 line break, the mark will be printed at the beginning of the next line.
266
267 @lilypond[quote,verbatim,relative=2]
268 \mark "Allegro"
269 c1 c
270 \mark "assai" \break
271 c  c
272 @end lilypond
273
274
275 @snippets
276
277 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc,doctitle]
278 {printing-marks-at-the-end-of-a-line.ly}
279
280 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc,doctitle]
281 {aligning-marks-with-various-notation-objects.ly}
282
283 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc,doctitle]
284 {printing-marks-on-every-staff.ly}
285
286
287 @seealso
288 Notation Reference:
289 @ref{Rehearsal marks},
290 @ref{Formatting text},
291 @ref{Music notation inside markup},
292 @ref{The Feta font}.
293
294 Snippets:
295 @rlsr{Text}.
296
297 Internals Reference:
298 @rinternals{MarkEvent},
299 @rinternals{Mark_engraver},
300 @rinternals{RehearsalMark}.
301
302
303 @node Separate text
304 @unnumberedsubsubsec Separate text
305
306 @cindex separate text
307 @cindex text, separate
308 @cindex standalone text
309 @cindex top-level text
310 @cindex text, top-level
311 @cindex text, standalone
312
313 @funindex \markup
314 @funindex markup
315
316 A @code{\markup} block can exist by itself, outside of any
317 @code{\score} block, as a @qq{top-level expression}.  This syntax
318 is described in @ref{File structure}.
319
320 @lilypond[verbatim,quote]
321 \markup {
322   Tomorrow, and tomorrow, and tomorrow...
323 }
324 @end lilypond
325
326 @noindent
327 This allows printing text separately from the music, which is
328 particularly useful when the input file contains several music pieces,
329 as described in @ref{Multiple scores in a book}.
330
331 @lilypond[quote,verbatim]
332 \score {
333   c'1
334 }
335 \markup {
336   Tomorrow, and tomorrow, and tomorrow...
337 }
338 \score {
339   c'1
340 }
341 @end lilypond
342
343 Separate text blocks can be spread over multiple pages,
344 making it possible to print text documents or books entirely
345 within LilyPond.  This feature, and the specific syntax it
346 requires, are described in @ref{Multi-page markup}.
347
348
349 @funindex \markup
350 @funindex markup
351 @funindex \markuplines
352 @funindex markuplines
353
354 @predefined
355 @code{\markup},
356 @code{\markuplines}.
357 @endpredefined
358
359
360 @snippets
361
362 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc,doctitle]
363 {stand-alone-two-column-markup.ly}
364
365
366 @seealso
367 Notation Reference:
368 @ref{Formatting text},
369 @ref{File structure},
370 @ref{Multiple scores in a book},
371 @ref{Multi-page markup}.
372
373 Snippets:
374 @rlsr{Text}.
375
376 Internals Reference:
377 @rinternals{TextScript}.
378
379
380 @node Formatting text
381 @subsection Formatting text
382
383 This section presents basic and advanced text formatting,
384 using the @code{\markup} mode specific syntax.
385
386 @menu
387 * Text markup introduction::
388 * Selecting font and font size::
389 * Text alignment::
390 * Graphic notation inside markup::
391 * Music notation inside markup::
392 * Multi-page markup::
393 @end menu
394
395 @node Text markup introduction
396 @unnumberedsubsubsec Text markup introduction
397
398 @cindex markup
399 @cindex text markup
400 @cindex markup text
401 @cindex typeset text
402
403 @funindex \markup
404 @funindex markup
405
406 A @code{\markup} block is used to typeset text with an extensible
407 syntax called @qq{markup mode}.
408
409 @cindex markup expressions
410 @cindex expressions, markup
411 @cindex markup syntax
412 @cindex syntax, markup
413
414 The markup syntax is similar to LilyPond's usual syntax: a
415 @code{\markup} expression is enclosed in curly braces
416 @code{@{@dots{} @}}.  A single word is regarded as a minimal expression,
417 and therefore does not need to be enclosed with braces.
418
419 Unlike simple @qq{quoted text} indications, @code{\markup} blocks may
420 contain nested expressions or markup commands, entered using the
421 backslash @code{\} character.  Such commands only affect the first
422 following expression.
423
424 @lilypond[quote,verbatim,relative=2]
425 a1-\markup intenso
426 a2^\markup { poco \italic più forte  }
427 c e1
428 d2_\markup { \italic "string. assai" }
429 e
430 b1^\markup { \bold { molto \italic  agitato } }
431 c
432 @end lilypond
433
434 @cindex special characters in markup mode
435 @cindex markup mode, special characters
436 @cindex reserved characters, printing
437 @cindex printing reserved characters
438 @cindex printing special characters
439 @cindex quoted text in markup mode
440 @cindex markup mode, quoted text
441
442 A @code{\markup} block may also contain quoted text strings.  Such
443 strings are treated as minimal text expressions, and therefore any
444 markup command or special character (such as @code{\} and @code{#})
445 will be printed verbatim without affecting the formatting of the text.
446 Double quotation marks themselves may be printed by preceding them
447 with backslashes.
448
449 @lilypond[quote,verbatim,relative=2]
450 a1^"\italic markup..."
451 a_\markup { \italic "... prints \"italic\" letters!" }
452 a a
453 @end lilypond
454
455 To be treated as a distinct expression, a list of words needs to be
456 enclosed with double quotes or preceded by a command.  The way markup
457 expressions are defined affects how these expressions will be stacked,
458 centered and aligned; in the following example, the second
459 @code{\markup} expression is treated the same as the first one:
460
461 @lilypond[quote,verbatim,relative=2]
462 c1^\markup { \center-column { a bbb c } }
463 c1^\markup { \center-column { a { bbb c } } }
464 c1^\markup { \center-column { a \line { bbb c } } }
465 c1^\markup { \center-column { a "bbb c" } }
466 @end lilypond
467
468 Markups can be stored in variables.  Such variables may be
469 directly attached to notes:
470
471 @lilypond[quote,verbatim]
472 allegro = \markup { \bold \large Allegro }
473
474 {
475   d''8.^\allegro
476   d'16 d'4 r2
477 }
478 @end lilypond
479
480
481 @noindent
482 An exhaustive list of @code{\markup}-specific commands can be found in
483 @ref{Text markup commands}.
484
485
486 @seealso
487 Notation Reference:
488 @ref{Text markup commands}.
489
490 Snippets:
491 @rlsr{Text}.
492
493 Installed Files:
494 @file{scm/markup.scm}.
495
496
497 @knownissues
498
499 Syntax errors for markup mode can be confusing.
500
501
502 @node Selecting font and font size
503 @unnumberedsubsubsec Selecting font and font size
504
505 @cindex font switching
506 @cindex changing fonts
507 @cindex switching fonts
508
509 @funindex \italic
510 @funindex italic
511 @funindex \bold
512 @funindex bold
513 @funindex \underline
514 @funindex underline
515
516 Basic font switching is supported in markup mode:
517
518 @lilypond[quote,verbatim,relative=2]
519 d1^\markup {
520   \bold { Più mosso }
521   \italic { non troppo \underline Vivo }
522 }
523 r2 r4 r8
524 d,_\markup { \italic quasi \smallCaps Tromba }
525 f1 d2 r
526 @end lilypond
527
528 @cindex font size
529 @cindex text size
530
531 @funindex \fontsize
532 @funindex fontsize
533 @funindex \smaller
534 @funindex smaller
535 @funindex \larger
536 @funindex larger
537 @funindex \magnify
538 @funindex magnify
539
540 The size of the characters can also be altered in different ways:
541 @itemize
542 @item
543 the font size can be set to predefined standard sizes,
544
545 @item
546 the font size can be set to an absolute value,
547
548 @item
549 the font size can also be changed relatively to its previous value.
550 @end itemize
551
552 @noindent
553 The following example demonstrates these three methods:
554
555 @lilypond[quote,verbatim,relative=1]
556 f1_\markup {
557   \tiny espressivo
558   \large e
559   \normalsize intenso
560 }
561 a^\markup {
562   \fontsize #5 Sinfonia
563   \fontsize #2 da
564   \fontsize #3 camera
565 }
566 bes^\markup { (con
567   \larger grande
568   \smaller emozione
569   \magnify #0.6 { e sentimento } )
570 }
571 d c2 r8 c bes a g1
572 @end lilypond
573
574 @cindex subscript
575 @cindex superscript
576
577 @funindex \super
578 @funindex super
579 @funindex \sub
580 @funindex sub
581
582 Text may be printed as subscript or superscript.  By default these are
583 printed in a smaller size, but a normal size can be used as well:
584
585 @lilypond[quote,verbatim]
586 \markup {
587   \column {
588     \line { 1 \super st movement }
589     \line { 1 \normal-size-super st movement
590       \sub { (part two) }  }
591   }
592 }
593 @end lilypond
594
595 @cindex font families
596
597 The markup mode provides an easy way to select alternate font
598 families.  The default serif font, of roman type, is automatically
599 selected unless specified otherwise; on the last line of the following
600 example, there is no difference between the first and the second word.
601
602 @lilypond[quote,verbatim]
603 \markup {
604   \column {
605     \line { Act \number 1 }
606     \line { \sans { Scene I. } }
607     \line { \typewriter { Verona. An open place. } }
608     \line { Enter \roman Valentine and Proteus. }
609   }
610 }
611 @end lilypond
612
613 @noindent
614 Some of these font families, used for specific items such as numbers
615 or dynamics, do not provide all characters, as mentioned in
616 @ref{New dynamic marks} and @ref{Manual repeat marks}.
617
618 @c \concat is actually documented in Align (it is not
619 @c a font-switching command).  But we need it here. -vv
620
621 When used inside a word, some font-switching or formatting commands
622 may produce an unwanted blank space.  This can easily be solved by
623 concatenating the text elements together:
624
625 @lilypond[quote,verbatim]
626 \markup {
627   \column {
628     \line {
629       \concat { 1 \super st }
630       movement
631     }
632     \line {
633       \concat { \dynamic p , }
634       \italic { con dolce espressione }
635     }
636   }
637 }
638 @end lilypond
639
640 An exhaustive list of font switching commands and custom font usage
641 commands can be found in @ref{Font}.
642
643 Defining custom font sets is also possible, as explained in
644 @ref{Fonts}.
645
646 @funindex \teeny
647 @funindex teeny
648 @funindex \tiny
649 @funindex tiny
650 @funindex \small
651 @funindex small
652 @funindex \normalsize
653 @funindex normalsize
654 @funindex \large
655 @funindex large
656 @funindex \huge
657 @funindex huge
658 @funindex \smaller
659 @funindex smaller
660 @funindex \larger
661 @funindex larger
662
663
664 @predefined
665 @code{\teeny},
666 @code{\tiny},
667 @code{\small},
668 @code{\normalsize},
669 @code{\large},
670 @code{\huge},
671 @code{\smaller},
672 @code{\larger}.
673 @endpredefined
674
675
676 @seealso
677 Notation Reference:
678 @ref{Font},
679 @ref{New dynamic marks},
680 @ref{Manual repeat marks},
681 @ref{Fonts}.
682
683 Snippets:
684 @rlsr{Text}.
685
686 Internals Reference:
687 @rinternals{TextScript}.
688
689 Installed Files:
690 @file{scm/define-markup-commands.scm}.
691
692 @knownissues
693 Using the font sizing commands @code{\teeny}, @code{\tiny},
694 @code{\small}, @code{\normalsize}, @code{\large}, and
695 @code{\huge} will lead to inconsistent line spacing compared to
696 using @code{\fontsize}.
697
698
699 @node Text alignment
700 @unnumberedsubsubsec Text alignment
701
702 @cindex text, aligning
703 @cindex aligning text
704 @cindex aligning markup text
705 @cindex aligning markups
706 @cindex markups, aligning
707 @cindex markup text, aligning
708
709 This subsection discusses how to place text in markup mode.  Markup
710 objects can also be moved as a whole, using the syntax described in
711 @rlearning{Moving objects}.
712
713 @c Padding commands should be mentioned on this page, but
714 @c most of these require \box to be more clearly illustrated. -vv
715
716 @cindex text, horizontal alignment
717 @cindex horizontal text alignment
718
719 @funindex \left-align
720 @funindex left-align
721 @funindex \center-align
722 @funindex center-align
723 @funindex \right-align
724 @funindex right-align
725
726 Markup objects may be aligned in different ways.  By default, a text
727 indication is aligned on its left edge: in the following example,
728 there is no difference between the first and the second markup.
729
730 @lilypond[quote,verbatim,relative=2]
731 d1-\markup { poco }
732 f
733 d-\markup { \left-align poco }
734 f
735 d-\markup { \center-align { poco } }
736 f
737 d-\markup { \right-align poco }
738 @end lilypond
739
740 @funindex \halign
741 @funindex halign
742
743 Horizontal alignment may be fine-tuned using a numeric value:
744
745 @lilypond[quote,verbatim,relative=2]
746 a1-\markup { \halign #-1 poco }
747 e'
748 a,-\markup { \halign #0 poco }
749 e'
750 a,-\markup { \halign #0.5 poco }
751 e'
752 a,-\markup { \halign #2 poco }
753 @end lilypond
754
755 @noindent
756 Some objects may have alignment procedures of their own, and therefore
757 are not affected by these commands.  It is possible to move such
758 markup objects as a whole, as shown for instance in
759 @ref{Text marks}.
760
761 @cindex text, vertical alignment
762 @cindex vertical text alignment
763
764 @funindex \raise
765 @funindex raise
766 @funindex \lower
767 @funindex lower
768 @funindex \null
769 @funindex null
770
771 @c QUERY Should the function of ``\null'' be clarified? rp
772
773 Vertical alignment is a bit more complex.  As stated above, markup
774 objects can be moved as a whole; however, it is also possible to move
775 specific elements inside a markup block.  In this case, the element to
776 be moved needs to be preceded with an @emph{anchor point}, that can be
777 another markup element or an invisible object.  The following example
778 demonstrates these two possibilities; the last markup in this example
779 has no anchor point, and therefore is not moved.
780
781 @lilypond[quote,verbatim,relative=1]
782 d2^\markup {
783   Acte I
784   \raise #2 { Scène 1 }
785 }
786 a'
787 g_\markup {
788   \null
789   \lower #4 \bold { Très modéré }
790 }
791 a
792 d,^\markup {
793   \raise #4 \italic { Une forêt. }
794 }
795 a'4 a g2 a
796 @end lilypond
797
798 @funindex \general-align
799 @funindex general-align
800 @funindex \translate
801 @funindex translate
802 @funindex \translate-scaled
803 @funindex translate-scaled
804
805 Some commands can affect both the horizontal and vertical alignment of
806 text objects in markup mode.  Any object affected by these commands
807 must be preceded with an anchor point:
808
809 @lilypond[quote,verbatim,relative=1]
810 d2^\markup {
811   Acte I
812   \translate #'(-1 . 2) "Scène 1"
813 }
814 a'
815 g_\markup {
816   \null
817   \general-align #Y #3.2 \bold "Très modéré"
818 }
819 a
820 d,^\markup {
821   \null
822   \translate-scaled #'(-1 . 2) \teeny "Une forêt."
823 }
824 a'4 a g2 a
825 @end lilypond
826
827 @cindex multi-line markup
828 @cindex markup, multi-line
829 @cindex multi-line text
830 @cindex text, multi-line
831 @cindex text in columns
832 @cindex columns, text
833
834 @funindex \column
835 @funindex column
836 @funindex \center-column
837 @funindex center-column
838
839 A markup object may include several lines of text.  In the following
840 example, each element or expression is placed on its own line, either
841 left-aligned or centered:
842
843 @lilypond[quote,verbatim]
844 \markup {
845   \column {
846     a
847     "b c"
848     \line { d e f }
849   }
850   \hspace #10
851   \center-column {
852     a
853     "b c"
854     \line { d e f }
855   }
856 }
857 @end lilypond
858
859 @cindex centering text on the page
860 @cindex text, centering on the page
861 @cindex markup, centering on the page
862
863 @funindex \fill-line
864 @funindex fill-line
865
866 Similarly, a list of elements or expressions may be spread to fill the
867 entire horizontal line width (if there is only one element, it will be
868 centered on the page).  These expressions can, in turn, include
869 multi-line text or any other markup expression:
870
871 @lilypond[quote,verbatim]
872 \markup {
873   \fill-line {
874     \line { William S. Gilbert }
875     \center-column {
876       \huge \smallCaps "The Mikado"
877       or
878       \smallCaps "The Town of Titipu"
879     }
880     \line { Sir Arthur Sullivan }
881   }
882 }
883 \markup {
884   \fill-line { 1885 }
885 }
886 @end lilypond
887
888 @cindex wordwrapped text
889 @cindex justified text
890 @cindex text, justified
891 @cindex text, wordwrapped
892 @cindex markup text, wordwrapped
893 @cindex markup text, justified
894
895 @funindex \wordwrap
896 @funindex wordwrap
897 @funindex \justify
898 @funindex justify
899
900 Long text indications can also be automatically wrapped accordingly to
901 the given line width.  These will be either left-aligned or justified,
902 as shown in the following example.
903
904 @lilypond[quote,verbatim]
905 \markup {
906   \column {
907     \line  \smallCaps { La vida breve }
908     \line \bold { Acto I }
909     \wordwrap \italic {
910       (La escena representa el corral de una casa de
911       gitanos en el Albaicín de Granada.  Al fondo una
912       puerta por la que se ve el negro interior de
913       una Fragua, iluminado por los rojos resplandores
914       del fuego.)
915     }
916     \hspace #0
917
918     \line \bold { Acto II }
919     \override #'(line-width . 50)
920     \justify \italic {
921       (Calle de Granada.  Fachada de la casa de Carmela
922       y su hermano Manuel con grandes ventanas abiertas
923       a través de las que se ve el patio
924       donde se celebra una alegre fiesta)
925     }
926   }
927 }
928 @end lilypond
929
930 @cindex text alignment commands
931 @cindex markup text alignment commands
932 @cindex alignment, text, commands
933
934 An exhaustive list of text alignment commands can be found in
935 @ref{Align}.
936
937
938 @seealso
939 Learning Manual:
940 @rlearning{Moving objects}.
941
942 Notation Reference:
943 @ref{Align},
944 @ref{Text marks}.
945
946 Snippets:
947 @rlsr{Text}.
948
949 Internals Reference:
950 @rinternals{TextScript}.
951
952 Installed Files:
953 @file{scm/define-markup-commands.scm}.
954
955
956 @node Graphic notation inside markup
957 @unnumberedsubsubsec Graphic notation inside markup
958
959 @cindex graphics, embedding
960 @cindex drawing graphic objects
961 @cindex graphic objects, drawing
962 @cindex embedding graphic objects
963 @cindex graphic objects, embedding
964
965 Various graphic objects may be added to a score, using markup
966 commands.
967
968 @cindex decorating text
969 @cindex framing text
970 @cindex text, framing
971 @cindex text, decorating
972 @cindex markup text, decorating
973 @cindex markup text, framing
974
975 @funindex \box
976 @funindex box
977 @funindex \circle
978 @funindex circle
979 @funindex \rounded-box
980 @funindex rounded-box
981 @funindex \bracket
982 @funindex bracket
983 @funindex \hbracket
984 @funindex hbracket
985
986 Some markup commands allow decoration of text elements with graphics,
987 as demonstrated in the following example.
988
989 @lilypond[quote,verbatim]
990 \markup \fill-line {
991   \center-column {
992     \circle Jack
993     \box "in the box"
994     \null
995     \line {
996       Erik Satie
997       \hspace #3
998       \bracket "1866 - 1925"
999     }
1000     \null
1001     \rounded-box \bold Prelude
1002   }
1003 }
1004 @end lilypond
1005
1006 @cindex padding around text
1007 @cindex text padding
1008 @cindex markup text padding
1009
1010 @funindex \pad-markup
1011 @funindex pad-markup
1012 @funindex \pad-x
1013 @funindex pad-x
1014 @funindex \pad-to-box
1015 @funindex pad-to-box
1016 @funindex \pad-around
1017 @funindex pad-around
1018
1019 Some commands may require an increase in the padding around the text;
1020 this is achieved with some markup commands exhaustively described in
1021 @ref{Align}.
1022
1023 @lilypond[quote,verbatim]
1024 \markup \fill-line {
1025   \center-column {
1026     \box "Charles Ives (1874 - 1954)"
1027     \null
1028     \box \pad-markup #2 "THE UNANSWERED QUESTION"
1029     \box \pad-x #8 "A Cosmic Landscape"
1030     \null
1031   }
1032 }
1033 \markup \column {
1034   \line {
1035     \hspace #10
1036     \box \pad-to-box #'(-5 . 20) #'(0 . 5)
1037       \bold "Largo to Presto"
1038   }
1039   \pad-around #3
1040       "String quartet keeps very even time,
1041 Flute quartet keeps very uneven time."
1042 }
1043 @end lilypond
1044
1045 @cindex graphic notation
1046 @cindex symbols, non-musical
1047 @cindex non-musical symbols
1048 @cindex notation, graphic
1049
1050 @funindex \combine
1051 @funindex combine
1052 @funindex \draw-circle
1053 @funindex draw-circle
1054 @funindex \filled-box
1055 @funindex filled-box
1056 @funindex \triangle
1057 @funindex triangle
1058 @funindex \draw-line
1059 @funindex draw-line
1060 @funindex \arrow-head
1061 @funindex arrow-head
1062
1063 Other graphic elements or symbols may be printed without requiring any
1064 text.  As with any markup expression, such objects can be combined.
1065
1066 @lilypond[quote,verbatim]
1067 \markup {
1068   \combine
1069     \draw-circle #4 #0.4 ##f
1070     \filled-box #'(-4 . 4) #'(-0.5 . 0.5) #1
1071   \hspace #5
1072
1073   \center-column {
1074     \triangle ##t
1075     \combine
1076       \draw-line #'(0 . 4)
1077       \arrow-head #Y #DOWN ##f
1078   }
1079 }
1080 @end lilypond
1081
1082 @cindex embedded graphics
1083 @cindex images, embedding
1084 @cindex graphics, embedding
1085 @cindex postscript
1086
1087 @funindex \epsfile
1088 @funindex epsfile
1089 @funindex \postscript
1090 @funindex postscript
1091
1092 Advanced graphic features include the ability to include external
1093 image files converted to the Encapsulated PostScript format
1094 (@emph{eps}), or to directly embed graphics into the input file, using
1095 native PostScript code.  In such a case, it may be useful to
1096 explicitly specify the size of the drawing, as demonstrated below:
1097
1098 @lilypond[quote,verbatim,relative=1]
1099 c1^\markup {
1100   \combine
1101     \epsfile #X #10 #"./context-example.eps"
1102     \with-dimensions #'(0 . 6) #'(0 . 10)
1103     \postscript #"
1104       -2 3 translate
1105       2.7 2 scale
1106       newpath
1107       2 -1 moveto
1108       4 -2 4 1 1 arct
1109       4 2 3 3 1 arct
1110       0 4 0 3 1 arct
1111       0 0 1 -1 1 arct
1112       closepath
1113       stroke"
1114   }
1115 c
1116 @end lilypond
1117
1118 An exhaustive list of graphics-specific commands can be found in
1119 @ref{Graphic}.
1120
1121
1122 @seealso
1123 Notation Reference:
1124 @ref{Graphic},
1125 @ref{Editorial annotations}.
1126
1127 Snippets:
1128 @rlsr{Text}.
1129
1130 Internals Reference:
1131 @rinternals{TextScript}.
1132
1133 Installed Files:
1134 @file{scm/define-markup-commands.scm},
1135 @file{scm/stencil.scm}.
1136
1137
1138 @node Music notation inside markup
1139 @unnumberedsubsubsec Music notation inside markup
1140
1141 @cindex notation inside markup
1142 @cindex music inside markup
1143 @cindex markup, music notation inside
1144
1145 Various musical notation elements may be added to a score, inside a
1146 markup object.
1147
1148 Notes and accidentals can be entered using markup commands:
1149
1150 @lilypond[quote,verbatim,relative=2]
1151 a2 a^\markup {
1152   \note #"4" #1
1153   =
1154   \note-by-number #1 #1 #1.5
1155 }
1156 b1_\markup {
1157   \natural \semiflat \flat
1158   \sesquiflat \doubleflat
1159 }
1160 \glissando
1161 a1_\markup {
1162   \natural \semisharp \sharp
1163   \sesquisharp \doublesharp
1164 }
1165 \glissando b
1166 @end lilypond
1167
1168 Other notation objects may also be printed
1169 in markup mode:
1170
1171 @lilypond[quote,verbatim,relative=1]
1172 g1 bes
1173 ees-\markup {
1174   \finger 4
1175   \tied-lyric #"~"
1176   \finger 1
1177 }
1178 fis_\markup { \dynamic rf }
1179 bes^\markup {
1180   \beam #8 #0.1 #0.5
1181 }
1182 cis
1183 d-\markup {
1184   \markalphabet #8
1185   \markletter #8
1186 }
1187 @end lilypond
1188
1189 More generally, any available musical symbol may be included
1190 separately in a markup object, as demonstrated below; an exhaustive
1191 list of these symbols and their names can be found in
1192 @ref{The Feta font}.
1193
1194 @lilypond[quote,verbatim,relative=2]
1195 c2
1196 c'^\markup { \musicglyph #"eight" }
1197 c,4
1198 c,8._\markup { \musicglyph #"clefs.G_change" }
1199 c16
1200 c2^\markup { \musicglyph #"timesig.neomensural94" }
1201 @end lilypond
1202
1203 Another way of printing non-text glyphs is described in
1204 @ref{Fonts explained}.  This is useful for printing braces of various
1205 sizes.
1206
1207 The markup mode also supports diagrams for specific
1208 instruments:
1209
1210 @lilypond[quote,verbatim,relative=2]
1211 c1^\markup {
1212   \fret-diagram-terse #"x;x;o;2;3;2;"
1213 }
1214 c^\markup {
1215   \harp-pedal #"^-v|--ov^"
1216 }
1217 c
1218 c^\markup {
1219   \combine
1220     \musicglyph #"accordion.discant"
1221     \combine
1222       \raise #0.5 \musicglyph #"accordion.dot"
1223       \raise #1.5 \musicglyph #"accordion.dot"
1224 }
1225 @end lilypond
1226
1227 @c The accordion diagram is actually taken from a snippet.
1228
1229 @noindent
1230 Such diagrams are documented in @ref{Instrument Specific Markup}.
1231
1232 @cindex score inside markup
1233 @cindex markup, score inside
1234
1235 A whole score can even be nested inside a markup object.  In such a
1236 case, the nested @code{\score} block must contain a @code{\layout}
1237 block, as demonstrated here:
1238
1239 @lilypond[quote,verbatim,relative=1]
1240 c4 d^\markup {
1241   \score {
1242     \relative c' { c4 d e f }
1243     \layout { }
1244   }
1245 }
1246 e f |
1247 c d e f
1248 @end lilypond
1249
1250 An exhaustive list of music notation related commands can be found in
1251 @ref{Music}.
1252
1253
1254 @seealso
1255 Notation Reference:
1256 @ref{Music},
1257 @ref{The Feta font},
1258 @ref{Fonts explained}.
1259
1260 Snippets:
1261 @rlsr{Text}.
1262
1263 Internals Reference:
1264 @rinternals{TextScript}.
1265
1266 Installed Files:
1267 @file{scm/define-markup-commands.scm},
1268 @file{scm/fret-diagrams.scm},
1269 @file{scm/harp-pedals.scm}.
1270
1271
1272 @node Multi-page markup
1273 @unnumberedsubsubsec Multi-page markup
1274
1275 @cindex multi-page markup
1276 @cindex markup, multi-page
1277 @cindex markup text, multi-page
1278 @cindex text spread over multiple pages
1279
1280 @funindex \markuplines
1281 @funindex markuplines
1282 @funindex \justified-lines
1283 @funindex justified-lines
1284 @funindex \wordwrap-lines
1285 @funindex wordwrap-lines
1286
1287 Although standard markup objects are not breakable, a specific syntax
1288 makes it possible to enter lines of text that can spread over multiple
1289 pages:
1290
1291 @lilypond[quote,verbatim]
1292 \markuplines {
1293   \justified-lines {
1294     A very long text of justified lines.
1295     ...
1296   }
1297   \wordwrap-lines {
1298     Another very long paragraph.
1299     ...
1300   }
1301   ...
1302 }
1303 @end lilypond
1304
1305 This syntax accepts a list of markups, that can be
1306 @itemize
1307 @item
1308 the result of a markup list command,
1309 @item
1310 a list of markups,
1311 @item
1312 a list of markup lists.
1313 @end itemize
1314
1315 An exhaustive list of markup list commands can be found in
1316 @ref{Text markup list commands}.
1317
1318
1319 @seealso
1320 Notation Reference:
1321 @ref{Text markup list commands},
1322
1323 Snippets:
1324 @rlsr{Text}.
1325
1326 Extending:
1327 @rextend{New markup list command definition}.
1328
1329 Internals Reference:
1330 @rinternals{TextScript}.
1331
1332 Installed Files:
1333 @file{scm/define-markup-commands.scm}.
1334
1335
1336 @funindex \markuplines
1337 @funindex markuplines
1338
1339 @predefined
1340 @code{\markuplines}.
1341 @endpredefined
1342
1343
1344 @node Fonts
1345 @subsection Fonts
1346
1347 This section presents the way fonts are handled, and how they may be
1348 changed in scores.
1349
1350 @menu
1351 * Fonts explained::
1352 * Single entry fonts::
1353 * Entire document fonts::
1354 @end menu
1355
1356 @node Fonts explained
1357 @unnumberedsubsubsec Fonts explained
1358
1359 @cindex Pango
1360 @cindex fonts, explained
1361 @cindex braces, various sizes
1362 @cindex fonts, non-text in markup
1363 @cindex non-text fonts in markup
1364
1365 @funindex font-interface
1366
1367 Fonts are handled through several libraries.  FontConfig is used to
1368 detect available fonts on the system; the selected fonts are rendered
1369 using Pango.
1370
1371 Music notation fonts can be described as a set of specific glyphs,
1372 ordered in several families.  The following syntax allows various
1373 LilyPond @code{feta} non-text fonts to be used directly in markup
1374 mode:
1375
1376 @lilypond[quote,verbatim,relative=2]
1377 a1^\markup {
1378   \vcenter {
1379     \override #'(font-encoding . fetaBraces)
1380     \lookup #"brace120"
1381     \override #'(font-encoding . fetaText)
1382     \column { 1 3 sf }
1383     \override #'(font-encoding . fetaMusic)
1384     \lookup #"noteheads.s0petrucci"
1385   }
1386 }
1387 @end lilypond
1388
1389 @noindent
1390 However, all these glyphs except the braces of various sizes contained
1391 in @code{fetaBraces} are available using the simpler syntax described
1392 in @ref{Music notation inside markup}.
1393
1394 When using the glyphs contained in @code{fetaBraces}, the size of the
1395 brace is specified by the numerical part of the glyph name, in
1396 arbitrary units.  Any integer from @code{0} to @code{575} inclusive
1397 may be specified, @code{0} giving the smallest brace.  The optimum
1398 value must be determined by trial and error.  These glyphs are all
1399 left braces; right braces may be obtained by rotation, see
1400 @ref{Rotating objects}.
1401
1402 Three families of text fonts are made available: the @emph{roman}
1403 (serif) font, that defaults to New Century Schoolbook, the
1404 @emph{sans} font and the monospaced @emph{typewriter} font -- these
1405 last two families are determined by the Pango installation.
1406
1407 Each family may include different shapes and series.  The following
1408 example demonstrates the ability to select alternate families, shapes,
1409 series and sizes.  The value supplied to @code{font-size} is the
1410 required change from the default size.
1411
1412 @lilypond[quote,verbatim,relative=2]
1413 \override Score.RehearsalMark #'font-family = #'typewriter
1414 \mark \markup "Ouverture"
1415 \override Voice.TextScript #'font-shape = #'italic
1416 \override Voice.TextScript #'font-series = #'bold
1417 d2.^\markup "Allegro"
1418 \override Voice.TextScript #'font-size = #-3
1419 c4^smaller
1420 @end lilypond
1421
1422 @noindent
1423 A similar syntax may be used in markup mode; however in this case it
1424 is preferable to use the simpler syntax explained in
1425 @ref{Selecting font and font size}:
1426
1427 @lilypond[quote,verbatim]
1428 \markup {
1429   \column {
1430     \line {
1431       \override #'(font-shape . italic)
1432       \override #'(font-size . 4)
1433       Idomeneo,
1434     }
1435     \line {
1436       \override #'(font-family . typewriter)
1437       {
1438         \override #'(font-series . bold)
1439         re
1440         di
1441       }
1442       \override #'(font-family . sans)
1443       Creta
1444     }
1445   }
1446 }
1447 @end lilypond
1448
1449 Although it is easy to switch between preconfigured fonts, it is also
1450 possible to use other fonts, as explained in the following sections:
1451 @ref{Single entry fonts} and @ref{Entire document fonts}.
1452
1453
1454 @seealso
1455 Notation Reference:
1456 @ref{The Feta font},
1457 @ref{Music notation inside markup},
1458 @ref{Selecting font and font size},
1459 @ref{Font}.
1460
1461
1462 @node Single entry fonts
1463 @unnumberedsubsubsec Single entry fonts
1464
1465 Any font that is installed on the operating system and recognized by
1466 FontConfig may be used in a score, using the following syntax:
1467
1468 @lilypond[quote,verbatim,relative=2]
1469 \override Staff.TimeSignature #'font-name = #"Bitstream Charter"
1470 \override Staff.TimeSignature #'font-size = #2
1471 \time 3/4
1472
1473 a1_\markup {
1474   \override #'(font-name . "Vera Bold")
1475     { Vera Bold }
1476 }
1477 @end lilypond
1478
1479 @cindex fonts, finding available
1480 @cindex finding available fonts
1481 @cindex listing available fonts
1482 @cindex available fonts, listing
1483
1484 @funindex show-available-fonts
1485
1486 The following command displays a list of all available fonts on the
1487 operating system:
1488
1489 @example
1490 lilypond -dshow-available-fonts x
1491 @end example
1492
1493
1494 @seealso
1495 Notation Reference:
1496 @ref{Fonts explained},
1497 @ref{Entire document fonts}.
1498
1499 Snippets:
1500 @rlsr{Text}.
1501
1502 @c A source file gets never installed...
1503 @c Installed Files:
1504 @c @file{lily/font-config-scheme.cc}.
1505
1506
1507 @node Entire document fonts
1508 @unnumberedsubsubsec Entire document fonts
1509
1510 It is possible to change the fonts to be used as the default fonts in
1511 the @emph{roman}, @emph{sans} and @emph{typewriter} font families by
1512 specifying them, in that order, as shown in the example below.  For an
1513 explanation of fonts, see @ref{Fonts explained}.
1514
1515 @cindex font families, setting
1516 @cindex fonts, changing for entire document
1517
1518 @funindex make-pango-font-tree
1519
1520 @lilypond[verbatim,quote]
1521 \paper  {
1522   myStaffSize = #20
1523   #(define fonts
1524     (make-pango-font-tree "Times New Roman"
1525                           "Nimbus Sans"
1526                           "Luxi Mono"
1527                            (/ myStaffSize 20)))
1528 }
1529
1530 \relative c'{
1531   c1-\markup {
1532     roman,
1533     \sans sans,
1534     \typewriter typewriter. }
1535 }
1536 @end lilypond
1537
1538 @c we don't do Helvetica / Courier, since GS incorrectly loads
1539 @c Apple TTF fonts
1540
1541
1542 @seealso
1543 Notation Reference:
1544 @ref{Fonts explained},
1545 @ref{Single entry fonts},
1546 @ref{Selecting font and font size},
1547 @ref{Font}.
1548