]> git.donarmstrong.com Git - lilypond.git/blob - scm/define-markup-commands.scm
88a9e9c7aa32198c24d6bad0b686e2e14b56850d
[lilypond.git] / scm / define-markup-commands.scm
1 ;;;; This file is part of LilyPond, the GNU music typesetter.
2 ;;;;
3 ;;;; Copyright (C) 2000--2011  Han-Wen Nienhuys <hanwen@xs4all.nl>
4 ;;;;                  Jan Nieuwenhuizen <janneke@gnu.org>
5 ;;;;
6 ;;;; LilyPond is free software: you can redistribute it and/or modify
7 ;;;; it under the terms of the GNU General Public License as published by
8 ;;;; the Free Software Foundation, either version 3 of the License, or
9 ;;;; (at your option) any later version.
10 ;;;;
11 ;;;; LilyPond is distributed in the hope that it will be useful,
12 ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ;;;; GNU General Public License for more details.
15 ;;;;
16 ;;;; You should have received a copy of the GNU General Public License
17 ;;;; along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18
19 ;;;
20 ;;; Markup commands and markup-list commands definitions.
21 ;;;
22 ;;; Markup commands which are part of LilyPond, are defined
23 ;;; in the (lily) module, which is the current module in this file,
24 ;;; using the `define-markup-command' macro.
25 ;;;
26 ;;; Usage:
27 ;;;
28 ;;; (define-markup-command (command-name layout props args...)
29 ;;;   args-signature
30 ;;;   [ #:category category ]
31 ;;;   [ #:properties property-bindings ]
32 ;;;   documentation-string
33 ;;;   ..body..)
34 ;;;
35 ;;; with:
36 ;;;   command-name
37 ;;;     the name of the markup command
38 ;;;
39 ;;;   layout and props
40 ;;;     arguments that are automatically passed to the command when it
41 ;;;     is interpreted.
42 ;;;     `layout' is an output def, which properties can be accessed
43 ;;;     using `ly:output-def-lookup'.
44 ;;;     `props' is a list of property settings which can be accessed
45 ;;;     using `chain-assoc-get' (more on that below)
46 ;;;
47 ;;;   args...
48 ;;;     the command arguments.
49 ;;;     There is no limitation on the order of command arguments.
50 ;;;     However, markup functions taking a markup as their last
51 ;;;     argument are somewhat special as you can apply them to a
52 ;;;     markup list, and the result is a markup list where the
53 ;;;     markup function (with the specified leading arguments) has
54 ;;;     been applied to every element of the original markup list.
55 ;;;
56 ;;;     Since replicating the leading arguments for applying a
57 ;;;     markup function to a markup list is cheap mostly for
58 ;;;     Scheme arguments, you avoid performance pitfalls by just
59 ;;;     using Scheme arguments for the leading arguments of markup
60 ;;;     functions that take a markup as their last argument.
61 ;;;
62 ;;;   args-signature
63 ;;;     the arguments signature, i.e., a list of type predicates which
64 ;;;     are used to type check the arguments, and also to define the general
65 ;;;     argument types (markup, markup-list, scheme) that the command is
66 ;;;     expecting.
67 ;;;     For instance, if a command expects a number, then a markup, the
68 ;;;     signature would be: (number? markup?)
69 ;;;
70 ;;;   category
71 ;;;     for documentation purpose, builtin markup commands are grouped by
72 ;;;     category.  This can be any symbol.  When documentation is generated,
73 ;;;     the symbol is converted to a capitalized string, where hyphens are
74 ;;;     replaced by spaces.
75 ;;;
76 ;;;   property-bindings
77 ;;;     this is used both for documentation generation, and to ease
78 ;;;     programming the command itself.  It is list of
79 ;;;        (property-name default-value)
80 ;;;     or (property-name)
81 ;;;     elements.  Each property is looked-up in the `props' argument, and
82 ;;;     the symbol naming the property is bound to its value.
83 ;;;     When the property is not found in `props', then the symbol is bound
84 ;;;     to the given default value.  When no default value is given, #f is
85 ;;;     used instead.
86 ;;;     Thus, using the following property bindings:
87 ;;;       ((thickness 0.1)
88 ;;;        (font-size 0))
89 ;;;     is equivalent to writing:
90 ;;;       (let ((thickness (chain-assoc-get 'thickness props 0.1))
91 ;;;             (font-size (chain-assoc-get 'font-size props 0)))
92 ;;;         ..body..)
93 ;;;     When a command `B' internally calls an other command `A', it may
94 ;;;     desirable to see in `B' documentation all the properties and
95 ;;;     default values used by `A'.  In that case, add `A-markup' to the
96 ;;;     property-bindings of B.  (This is used when generating
97 ;;;     documentation, but won't create bindings.)
98 ;;;
99 ;;;   documentation-string
100 ;;;     the command documentation string (used to generate manuals)
101 ;;;
102 ;;;   body
103 ;;;     the command body.  The function is supposed to return a stencil.
104 ;;;
105 ;;; Each markup command definition shall have a documentation string
106 ;;; with description, syntax and example.
107
108 (use-modules (ice-9 regex))
109
110 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
111 ;; utility functions
112 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
113
114 (define-public empty-stencil (ly:make-stencil '() '(1 . -1) '(1 . -1)))
115 (define-public point-stencil (ly:make-stencil "" '(0 . 0) '(0 . 0)))
116
117 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
118 ;; geometric shapes
119 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
120
121 (define-markup-command (draw-line layout props dest)
122   (number-pair?)
123   #:category graphic
124   #:properties ((thickness 1))
125   "
126 @cindex drawing lines within text
127
128 A simple line.
129 @lilypond[verbatim,quote]
130 \\markup {
131   \\draw-line #'(4 . 4)
132   \\override #'(thickness . 5)
133   \\draw-line #'(-3 . 0)
134 }
135 @end lilypond"
136   (let ((th (* (ly:output-def-lookup layout 'line-thickness)
137                thickness))
138         (x (car dest))
139         (y (cdr dest)))
140     (make-line-stencil th 0 0 x y)))
141
142 (define-markup-command (draw-hline layout props)
143   ()
144   #:category graphic
145   #:properties ((draw-line-markup)
146                 (line-width)
147                 (span-factor 1))
148   "
149 @cindex drawing a line across a page
150
151 Draws a line across a page, where the property @code{span-factor}
152 controls what fraction of the page is taken up.
153 @lilypond[verbatim,quote]
154 \\markup {
155   \\column {
156     \\draw-hline
157     \\override #'(span-factor . 1/3)
158     \\draw-hline
159   }
160 }
161 @end lilypond"
162   (interpret-markup layout
163                     props
164                     (markup #:draw-line (cons (* line-width
165                                                   span-factor)
166                                                0))))
167
168 (define-markup-command (draw-circle layout props radius thickness filled)
169   (number? number? boolean?)
170   #:category graphic
171   "
172 @cindex drawing circles within text
173
174 A circle of radius @var{radius} and thickness @var{thickness},
175 optionally filled.
176
177 @lilypond[verbatim,quote]
178 \\markup {
179   \\draw-circle #2 #0.5 ##f
180   \\hspace #2
181   \\draw-circle #2 #0 ##t
182 }
183 @end lilypond"
184   (make-circle-stencil radius thickness filled))
185
186 (define-markup-command (triangle layout props filled)
187   (boolean?)
188   #:category graphic
189   #:properties ((thickness 0.1)
190                 (font-size 0)
191                 (baseline-skip 2))
192   "
193 @cindex drawing triangles within text
194
195 A triangle, either filled or empty.
196
197 @lilypond[verbatim,quote]
198 \\markup {
199   \\triangle ##t
200   \\hspace #2
201   \\triangle ##f
202 }
203 @end lilypond"
204   (let ((ex (* (magstep font-size) 0.8 baseline-skip)))
205     (ly:make-stencil
206      `(polygon '(0.0 0.0
207                      ,ex 0.0
208                      ,(* 0.5 ex)
209                      ,(* 0.86 ex))
210            ,thickness
211            ,filled)
212      (cons 0 ex)
213      (cons 0 (* .86 ex)))))
214
215 (define-markup-command (circle layout props arg)
216   (markup?)
217   #:category graphic
218   #:properties ((thickness 1)
219                 (font-size 0)
220                 (circle-padding 0.2))
221   "
222 @cindex circling text
223
224 Draw a circle around @var{arg}.  Use @code{thickness},
225 @code{circle-padding} and @code{font-size} properties to determine line
226 thickness and padding around the markup.
227
228 @lilypond[verbatim,quote]
229 \\markup {
230   \\circle {
231     Hi
232   }
233 }
234 @end lilypond"
235   (let ((th (* (ly:output-def-lookup layout 'line-thickness)
236                thickness))
237          (pad (* (magstep font-size) circle-padding))
238          (m (interpret-markup layout props arg)))
239     (circle-stencil m th pad)))
240
241 (define-markup-command (with-url layout props url arg)
242   (string? markup?)
243   #:category graphic
244   "
245 @cindex inserting URL links into text
246
247 Add a link to URL @var{url} around @var{arg}.  This only works in
248 the PDF backend.
249
250 @lilypond[verbatim,quote]
251 \\markup {
252   \\with-url #\"http://lilypond.org/web/\" {
253     LilyPond ... \\italic {
254       music notation for everyone
255     }
256   }
257 }
258 @end lilypond"
259   (let* ((stil (interpret-markup layout props arg))
260          (xextent (ly:stencil-extent stil X))
261          (yextent (ly:stencil-extent stil Y))
262          (old-expr (ly:stencil-expr stil))
263          (url-expr (list 'url-link url `(quote ,xextent) `(quote ,yextent))))
264
265     (ly:stencil-add (ly:make-stencil url-expr xextent yextent) stil)))
266
267 (define-markup-command (page-link layout props page-number arg)
268   (number? markup?)
269   #:category other
270   "
271 @cindex referencing page numbers in text
272
273 Add a link to the page @var{page-number} around @var{arg}.  This only works
274 in the PDF backend.
275
276 @lilypond[verbatim,quote]
277 \\markup {
278   \\page-link #2  { \\italic { This links to page 2... } }
279 }
280 @end lilypond"
281   (let* ((stil (interpret-markup layout props arg))
282          (xextent (ly:stencil-extent stil X))
283          (yextent (ly:stencil-extent stil Y))
284          (old-expr (ly:stencil-expr stil))
285          (link-expr (list 'page-link page-number `(quote ,xextent) `(quote ,yextent))))
286
287     (ly:stencil-add (ly:make-stencil link-expr xextent yextent) stil)))
288
289 (define-markup-command (with-link layout props label arg)
290   (symbol? markup?)
291   #:category other
292   "
293 @cindex referencing page labels in text
294
295 Add a link to the page holding label @var{label} around @var{arg}.  This
296 only works in the PDF backend.
297
298 @lilypond[verbatim,quote]
299 \\markup {
300   \\with-link #\"label\" {
301     \\italic { This links to the page containing the label... }
302   }
303 }
304 @end lilypond"
305   (let* ((arg-stencil (interpret-markup layout props arg))
306          (x-ext (ly:stencil-extent arg-stencil X))
307          (y-ext (ly:stencil-extent arg-stencil Y)))
308     (ly:make-stencil
309      `(delay-stencil-evaluation
310        ,(delay (ly:stencil-expr
311                 (let* ((table (ly:output-def-lookup layout 'label-page-table))
312                        (page-number (if (list? table)
313                                         (assoc-get label table)
314                                         #f))
315                        (link-expr (list 'page-link page-number
316                                         `(quote ,x-ext) `(quote ,y-ext))))
317                   (ly:stencil-add (ly:make-stencil link-expr x-ext y-ext)
318 arg-stencil)))))
319      x-ext
320      y-ext)))
321
322
323 (define-markup-command (beam layout props width slope thickness)
324   (number? number? number?)
325   #:category graphic
326   "
327 @cindex drawing beams within text
328
329 Create a beam with the specified parameters.
330 @lilypond[verbatim,quote]
331 \\markup {
332   \\beam #5 #1 #2
333 }
334 @end lilypond"
335   (let* ((y (* slope width))
336          (yext (cons (min 0 y) (max 0 y)))
337          (half (/ thickness 2)))
338
339     (ly:make-stencil
340      `(polygon ',(list
341                   0 (/ thickness -2)
342                     width (+ (* width slope)  (/ thickness -2))
343                     width (+ (* width slope)  (/ thickness 2))
344                     0 (/ thickness 2))
345                ,(ly:output-def-lookup layout 'blot-diameter)
346                #t)
347      (cons 0 width)
348      (cons (+ (- half) (car yext))
349            (+ half (cdr yext))))))
350
351 (define-markup-command (underline layout props arg)
352   (markup?)
353   #:category font
354   #:properties ((thickness 1) (offset 2))
355   "
356 @cindex underlining text
357
358 Underline @var{arg}.  Looks at @code{thickness} to determine line
359 thickness, and @code{offset} to determine line y-offset.
360
361 @lilypond[verbatim,quote]
362 \\markup \\fill-line {
363   \\underline \"underlined\"
364   \\override #'(offset . 5)
365   \\override #'(thickness . 1)
366   \\underline \"underlined\"
367   \\override #'(offset . 1)
368   \\override #'(thickness . 5)
369   \\underline \"underlined\"
370 }
371 @end lilypond"
372   (let* ((thick (ly:output-def-lookup layout 'line-thickness))
373          (underline-thick (* thickness thick))
374          (markup (interpret-markup layout props arg))
375          (x1 (car (ly:stencil-extent markup X)))
376          (x2 (cdr (ly:stencil-extent markup X)))
377          (y (* thick (- offset)))
378          (line (make-line-stencil underline-thick x1 y x2 y)))
379     (ly:stencil-add markup line)))
380
381 (define-markup-command (box layout props arg)
382   (markup?)
383   #:category font
384   #:properties ((thickness 1)
385                 (font-size 0)
386                 (box-padding 0.2))
387   "
388 @cindex enclosing text within a box
389
390 Draw a box round @var{arg}.  Looks at @code{thickness},
391 @code{box-padding} and @code{font-size} properties to determine line
392 thickness and padding around the markup.
393
394 @lilypond[verbatim,quote]
395 \\markup {
396   \\override #'(box-padding . 0.5)
397   \\box
398   \\line { V. S. }
399 }
400 @end lilypond"
401   (let* ((th (* (ly:output-def-lookup layout 'line-thickness)
402                 thickness))
403          (pad (* (magstep font-size) box-padding))
404          (m (interpret-markup layout props arg)))
405     (box-stencil m th pad)))
406
407 (define-markup-command (filled-box layout props xext yext blot)
408   (number-pair? number-pair? number?)
409   #:category graphic
410   "
411 @cindex drawing solid boxes within text
412 @cindex drawing boxes with rounded corners
413
414 Draw a box with rounded corners of dimensions @var{xext} and
415 @var{yext}.  For example,
416 @verbatim
417 \\filled-box #'(-.3 . 1.8) #'(-.3 . 1.8) #0
418 @end verbatim
419 creates a box extending horizontally from -0.3 to 1.8 and
420 vertically from -0.3 up to 1.8, with corners formed from a
421 circle of diameter@tie{}0 (i.e., sharp corners).
422
423 @lilypond[verbatim,quote]
424 \\markup {
425   \\filled-box #'(0 . 4) #'(0 . 4) #0
426   \\filled-box #'(0 . 2) #'(-4 . 2) #0.4
427   \\filled-box #'(1 . 8) #'(0 . 7) #0.2
428   \\with-color #white
429   \\filled-box #'(-4.5 . -2.5) #'(3.5 . 5.5) #0.7
430 }
431 @end lilypond"
432   (ly:round-filled-box
433    xext yext blot))
434
435 (define-markup-command (rounded-box layout props arg)
436   (markup?)
437   #:category graphic
438   #:properties ((thickness 1)
439                 (corner-radius 1)
440                 (font-size 0)
441                 (box-padding 0.5))
442   "@cindex enclosing text in a box with rounded corners
443    @cindex drawing boxes with rounded corners around text
444 Draw a box with rounded corners around @var{arg}.  Looks at @code{thickness},
445 @code{box-padding} and @code{font-size} properties to determine line
446 thickness and padding around the markup; the @code{corner-radius} property
447 makes it possible to define another shape for the corners (default is 1).
448
449 @lilypond[quote,verbatim,relative=2]
450 c4^\\markup {
451   \\rounded-box {
452     Overtura
453   }
454 }
455 c,8. c16 c4 r
456 @end lilypond"
457   (let ((th (* (ly:output-def-lookup layout 'line-thickness)
458                thickness))
459         (pad (* (magstep font-size) box-padding))
460         (m (interpret-markup layout props arg)))
461     (ly:stencil-add (rounded-box-stencil m th pad corner-radius)
462                     m)))
463
464 (define-markup-command (rotate layout props ang arg)
465   (number? markup?)
466   #:category align
467   "
468 @cindex rotating text
469
470 Rotate object with @var{ang} degrees around its center.
471
472 @lilypond[verbatim,quote]
473 \\markup {
474   default
475   \\hspace #2
476   \\rotate #45
477   \\line {
478     rotated 45°
479   }
480 }
481 @end lilypond"
482   (let* ((stil (interpret-markup layout props arg)))
483     (ly:stencil-rotate stil ang 0 0)))
484
485 (define-markup-command (whiteout layout props arg)
486   (markup?)
487   #:category other
488   "
489 @cindex adding a white background to text
490
491 Provide a white background for @var{arg}.
492
493 @lilypond[verbatim,quote]
494 \\markup {
495   \\combine
496     \\filled-box #'(-1 . 10) #'(-3 . 4) #1
497     \\whiteout whiteout
498 }
499 @end lilypond"
500   (stencil-whiteout (interpret-markup layout props arg)))
501
502 (define-markup-command (pad-markup layout props amount arg)
503   (number? markup?)
504   #:category align
505   "
506 @cindex padding text
507 @cindex putting space around text
508
509 Add space around a markup object.
510
511 @lilypond[verbatim,quote]
512 \\markup {
513   \\box {
514     default
515   }
516   \\hspace #2
517   \\box {
518     \\pad-markup #1 {
519       padded
520     }
521   }
522 }
523 @end lilypond"
524   (let*
525       ((stil (interpret-markup layout props arg))
526        (xext (ly:stencil-extent stil X))
527        (yext (ly:stencil-extent stil Y)))
528
529     (ly:make-stencil
530      (ly:stencil-expr stil)
531      (interval-widen xext amount)
532      (interval-widen yext amount))))
533
534 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
535 ;; space
536 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
537
538 (define-markup-command (strut layout props)
539   ()
540   #:category other
541   "
542 @cindex creating vertical spaces in text
543
544 Create a box of the same height as the space in the current font."
545   (let ((m (ly:text-interface::interpret-markup layout props " ")))
546     (ly:make-stencil (ly:stencil-expr m)
547                      '(0 . 0)
548                      (ly:stencil-extent m X)
549                      )))
550
551 ;; todo: fix negative space
552 (define-markup-command (hspace layout props amount)
553   (number?)
554   #:category align
555   #:properties ((word-space))
556   "
557 @cindex creating horizontal spaces in text
558
559 Create an invisible object taking up horizontal space @var{amount}.
560
561 @lilypond[verbatim,quote]
562 \\markup {
563   one
564   \\hspace #2
565   two
566   \\hspace #8
567   three
568 }
569 @end lilypond"
570   (let ((corrected-space (- amount word-space)))
571     (if (> corrected-space 0)
572         (ly:make-stencil "" (cons 0 corrected-space) '(0 . 0))
573         (ly:make-stencil "" (cons corrected-space corrected-space) '(0 . 0)))))
574
575 ;; todo: fix negative space
576 (define-markup-command (vspace layout props amount)
577  (number?)
578  #:category align
579  "
580 @cindex creating vertical spaces in text
581
582 Create an invisible object taking up vertical space
583 of @var{amount} multiplied by 3.
584
585 @lilypond[verbatim,quote]
586 \\markup {
587     \\center-column {
588     one
589     \\vspace #2
590     two
591     \\vspace #5
592     three
593   }
594 }
595 @end lilypond"
596   (let ((amount (* amount 3.0)))
597     (if (> amount 0)
598         (ly:make-stencil "" (cons 0 0) (cons 0 amount))
599         (ly:make-stencil "" (cons 0 0) (cons amount amount)))))
600
601
602 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
603 ;; importing graphics.
604 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
605
606 (define-markup-command (stencil layout props stil)
607   (ly:stencil?)
608   #:category other
609   "
610 @cindex importing stencils into text
611
612 Use a stencil as markup.
613
614 @lilypond[verbatim,quote]
615 \\markup {
616   \\stencil #(make-circle-stencil 2 0 #t)
617 }
618 @end lilypond"
619   stil)
620
621 (define bbox-regexp
622   (make-regexp "%%BoundingBox:[ \t]+([0-9-]+)[ \t]+([0-9-]+)[ \t]+([0-9-]+)[ \t]+([0-9-]+)"))
623
624 (define (get-postscript-bbox string)
625   "Extract the bbox from STRING, or return #f if not present."
626   (let*
627       ((match (regexp-exec bbox-regexp string)))
628
629     (if match
630         (map (lambda (x)
631                (string->number (match:substring match x)))
632              (cdr (iota 5)))
633
634         #f)))
635
636 (define-markup-command (epsfile layout props axis size file-name)
637   (number? number? string?)
638   #:category graphic
639   "
640 @cindex inlining an Encapsulated PostScript image
641
642 Inline an EPS image.  The image is scaled along @var{axis} to
643 @var{size}.
644
645 @lilypond[verbatim,quote]
646 \\markup {
647   \\general-align #Y #DOWN {
648     \\epsfile #X #20 #\"context-example.eps\"
649     \\epsfile #Y #20 #\"context-example.eps\"
650   }
651 }
652 @end lilypond"
653   (if (ly:get-option 'safe)
654       (interpret-markup layout props "not allowed in safe")
655       (eps-file->stencil axis size file-name)
656       ))
657
658 (define-markup-command (postscript layout props str)
659   (string?)
660   #:category graphic
661   "
662 @cindex inserting PostScript directly into text
663 This inserts @var{str} directly into the output as a PostScript
664 command string.
665
666 @lilypond[verbatim,quote]
667 ringsps = #\"
668   0.15 setlinewidth
669   0.9 0.6 moveto
670   0.4 0.6 0.5 0 361 arc
671   stroke
672   1.0 0.6 0.5 0 361 arc
673   stroke
674   \"
675
676 rings = \\markup {
677   \\with-dimensions #'(-0.2 . 1.6) #'(0 . 1.2)
678   \\postscript #ringsps
679 }
680
681 \\relative c'' {
682   c2^\\rings
683   a2_\\rings
684 }
685 @end lilypond"
686   ;; FIXME
687   (ly:make-stencil
688    (list 'embedded-ps
689          (format #f "
690 gsave currentpoint translate
691 0.1 setlinewidth
692  ~a
693 grestore
694 "
695                  str))
696    '(0 . 0) '(0 . 0)))
697
698 (define-markup-command (path layout props thickness commands) (number? list?)
699   #:category graphic
700   #:properties ((line-cap-style 'round)
701                 (line-join-style 'round)
702                 (filled #f))
703   "
704 @cindex paths, drawing
705 @cindex drawing paths
706 Draws a path with line thickness @var{thickness} according to the
707 directions given in @var{commands}.  @var{commands} is a list of
708 lists where the @code{car} of each sublist is a drawing command and
709 the @code{cdr} comprises the associated arguments for each command.
710
711 Line-cap styles and line-join styles may be customized by
712 overriding the @code{line-cap-style} and @code{line-join-style}
713 properties, respectively.  Available line-cap styles are
714 @code{'butt}, @code{'round}, and @code{'square}.  Available
715 line-join styles are @code{'miter}, @code{'round}, and
716 @code{'bevel}.
717
718 The property @code{filled} specifies whether or not the path is
719 filled with color.
720
721 There are seven commands available to use in the list
722 @code{commands}: @code{moveto}, @code{rmoveto}, @code{lineto},
723 @code{rlineto}, @code{curveto}, @code{rcurveto}, and
724 @code{closepath}.  Note that the commands that begin with @emph{r}
725 are the relative variants of the other three commands.
726
727 The commands @code{moveto}, @code{rmoveto}, @code{lineto}, and
728 @code{rlineto} take 2 arguments; they are the X and Y coordinates
729 for the destination point.
730
731 The commands @code{curveto} and @code{rcurveto} create cubic
732 Bézier curves, and take 6 arguments; the first two are the X and Y
733 coordinates for the first control point, the second two are the X
734 and Y coordinates for the second control point, and the last two
735 are the X and Y coordinates for the destination point.
736
737 The @code{closepath} command takes zero arguments and closes the
738 current subpath in the active path.
739
740 Note that a sequence of commands @emph{must} begin with a
741 @code{moveto} or @code{rmoveto} to work with the SVG output.
742
743 @lilypond[verbatim,quote]
744 samplePath =
745   #'((moveto 0 0)
746      (lineto -1 1)
747      (lineto 1 1)
748      (lineto 1 -1)
749      (curveto -5 -5 -5 5 -1 0)
750      (closepath))
751
752 \\markup {
753   \\path #0.25 #samplePath
754 }
755 @end lilypond"
756   (let* ((half-thickness (/ thickness 2))
757          (current-point '(0 . 0))
758          (set-point (lambda (lst) (set! current-point lst)))
759          (relative? (lambda (x)
760                       (string-prefix? "r" (symbol->string (car x)))))
761          ;; For calculating extents, we want to modify the command
762          ;; list so that all coordinates are absolute.
763          (new-commands (map (lambda (x)
764                               (cond
765                                 ;; for rmoveto, rlineto
766                                 ((and (relative? x) (eq? 3 (length x)))
767                                  (let ((cp (cons
768                                              (+ (car current-point)
769                                                 (second x))
770                                              (+ (cdr current-point)
771                                                 (third x)))))
772                                    (set-point cp)
773                                    (list (car cp)
774                                          (cdr cp))))
775                                 ;; for rcurveto
776                                 ((and (relative? x) (eq? 7 (length x)))
777                                  (let* ((old-cp current-point)
778                                         (cp (cons
779                                               (+ (car old-cp)
780                                                  (sixth x))
781                                               (+ (cdr old-cp)
782                                                  (seventh x)))))
783                                    (set-point cp)
784                                    (list (+ (car old-cp) (second x))
785                                          (+ (cdr old-cp) (third x))
786                                          (+ (car old-cp) (fourth x))
787                                          (+ (cdr old-cp) (fifth x))
788                                          (car cp)
789                                          (cdr cp))))
790                                 ;; for moveto, lineto
791                                 ((eq? 3 (length x))
792                                  (set-point (cons (second x)
793                                                   (third x)))
794                                  (drop x 1))
795                                 ;; for curveto
796                                 ((eq? 7 (length x))
797                                  (set-point (cons (sixth x)
798                                                   (seventh x)))
799                                  (drop x 1))
800                                 ;; keep closepath for filtering;
801                                 ;; see `without-closepath'.
802                                 (else x)))
803                             commands))
804          ;; path-min-max does not accept 0-arg lists,
805          ;; and since closepath does not affect extents, filter
806          ;; out those commands here.
807          (without-closepath (filter (lambda (x)
808                                       (not (equal? 'closepath (car x))))
809                                     new-commands))
810          (extents (path-min-max
811                     ;; set the origin to the first moveto
812                     (list (list-ref (car without-closepath) 0)
813                           (list-ref (car without-closepath) 1))
814                     without-closepath))
815          (X-extent (cons (list-ref extents 0) (list-ref extents 1)))
816          (Y-extent (cons (list-ref extents 2) (list-ref extents 3)))
817          (command-list (fold-right append '() commands)))
818
819     ;; account for line thickness
820     (set! X-extent (interval-widen X-extent half-thickness))
821     (set! Y-extent (interval-widen Y-extent half-thickness))
822
823     (ly:make-stencil
824       `(path ,thickness `(,@',command-list)
825              ',line-cap-style ',line-join-style ,filled)
826       X-extent
827       Y-extent)))
828
829 (define-markup-command (score layout props score)
830   (ly:score?)
831   #:category music
832   #:properties ((baseline-skip))
833   "
834 @cindex inserting music into text
835
836 Inline an image of music.
837
838 @lilypond[verbatim,quote]
839 \\markup {
840   \\score {
841     \\new PianoStaff <<
842       \\new Staff \\relative c' {
843         \\key f \\major
844         \\time 3/4
845         \\mark \\markup { Allegro }
846         f2\\p( a4)
847         c2( a4)
848         bes2( g'4)
849         f8( e) e4 r
850       }
851       \\new Staff \\relative c {
852         \\clef bass
853         \\key f \\major
854         \\time 3/4
855         f8( a c a c a
856         f c' es c es c)
857         f,( bes d bes d bes)
858         f( g bes g bes g)
859       }
860     >>
861     \\layout {
862       indent = 0.0\\cm
863       \\context {
864         \\Score
865         \\override RehearsalMark
866           #'break-align-symbols = #'(time-signature key-signature)
867         \\override RehearsalMark
868           #'self-alignment-X = #LEFT
869       }
870       \\context {
871         \\Staff
872         \\override TimeSignature
873           #'break-align-anchor-alignment = #LEFT
874       }
875     }
876   }
877 }
878 @end lilypond"
879   (let ((output (ly:score-embedded-format score layout)))
880
881     (if (ly:music-output? output)
882         (stack-stencils Y DOWN baseline-skip
883                         (map paper-system-stencil
884                              (vector->list
885                               (ly:paper-score-paper-systems output))))
886         (begin
887           (ly:warning (_"no systems found in \\score markup, does it have a \\layout block?"))
888           empty-stencil))))
889
890 (define-markup-command (null layout props)
891   ()
892   #:category other
893   "
894 @cindex creating empty text objects
895
896 An empty markup with extents of a single point.
897
898 @lilypond[verbatim,quote]
899 \\markup {
900   \\null
901 }
902 @end lilypond"
903   point-stencil)
904
905 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
906 ;; basic formatting.
907 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
908
909 (define-markup-command (simple layout props str)
910   (string?)
911   #:category font
912   "
913 @cindex simple text strings
914
915 A simple text string; @code{\\markup @{ foo @}} is equivalent with
916 @code{\\markup @{ \\simple #\"foo\" @}}.
917
918 Note: for creating standard text markup or defining new markup commands,
919 the use of @code{\\simple} is unnecessary.
920
921 @lilypond[verbatim,quote]
922 \\markup {
923   \\simple #\"simple\"
924   \\simple #\"text\"
925   \\simple #\"strings\"
926 }
927 @end lilypond"
928   (interpret-markup layout props str))
929
930 (define-markup-command (tied-lyric layout props str)
931   (string?)
932   #:category music
933   #:properties ((word-space))
934   "
935 @cindex simple text strings with tie characters
936
937 Like simple-markup, but use tie characters for @q{~} tilde symbols.
938
939 @lilypond[verbatim,quote]
940 \\markup \\column {
941   \\tied-lyric #\"Siam navi~all'onde~algenti Lasciate~in abbandono\"
942   \\tied-lyric #\"Impetuosi venti I nostri~affetti sono\"
943   \\tied-lyric #\"Ogni diletto~e scoglio Tutta la vita~e~un mar.\"
944 }
945 @end lilypond"
946   (define (replace-ties tie str)
947     (if (string-contains str "~")
948         (let*
949           ((half-space (/ word-space 2))
950            (parts (string-split str #\~))
951            (tie-str (markup #:hspace half-space
952                             #:musicglyph tie
953                             #:hspace half-space))
954            (joined  (list-join parts tie-str)))
955           (make-concat-markup joined))
956         str))
957
958   (define short-tie-regexp (make-regexp "~[^.]~"))
959   (define (match-short str) (regexp-exec short-tie-regexp str))
960
961   (define (replace-short str mkp)
962     (let ((match (match-short str)))
963       (if (not match)
964           (make-concat-markup (list
965             mkp
966             (replace-ties "ties.lyric.default" str)))
967           (let ((new-str (match:suffix match))
968                 (new-mkp (make-concat-markup (list
969                           mkp
970                           (replace-ties "ties.lyric.default"
971                                         (match:prefix match))
972                           (replace-ties "ties.lyric.short"
973                                         (match:substring match))))))
974               (replace-short new-str new-mkp)))))
975
976   (interpret-markup layout
977                     props
978                     (replace-short str (markup))))
979
980 (define-public empty-markup
981   (make-simple-markup ""))
982
983 ;; helper for justifying lines.
984 (define (get-fill-space word-count line-width word-space text-widths)
985   "Calculate the necessary paddings between each two adjacent texts.
986   The lengths of all texts are stored in @var{text-widths}.
987   The normal formula for the padding between texts a and b is:
988   padding = line-width/(word-count - 1) - (length(a) + length(b))/2
989   The first and last padding have to be calculated specially using the
990   whole length of the first or last text.
991   All paddings are checked to be at least word-space, to ensure that
992   no texts collide.
993   Return a list of paddings."
994   (cond
995    ((null? text-widths) '())
996
997    ;; special case first padding
998    ((= (length text-widths) word-count)
999     (cons
1000      (- (- (/ line-width (1- word-count)) (car text-widths))
1001         (/ (car (cdr text-widths)) 2))
1002      (get-fill-space word-count line-width word-space (cdr text-widths))))
1003    ;; special case last padding
1004    ((= (length text-widths) 2)
1005     (list (- (/ line-width (1- word-count))
1006              (+ (/ (car text-widths) 2) (car (cdr text-widths)))) 0))
1007    (else
1008     (let ((default-padding
1009             (- (/ line-width (1- word-count))
1010                (/ (+ (car text-widths) (car (cdr text-widths))) 2))))
1011       (cons
1012        (if (> word-space default-padding)
1013            word-space
1014            default-padding)
1015        (get-fill-space word-count line-width word-space (cdr text-widths)))))))
1016
1017 (define-markup-command (fill-line layout props args)
1018   (markup-list?)
1019   #:category align
1020   #:properties ((text-direction RIGHT)
1021                 (word-space 0.6)
1022                 (line-width #f))
1023   "Put @var{markups} in a horizontal line of width @var{line-width}.
1024 The markups are spaced or flushed to fill the entire line.
1025 If there are no arguments, return an empty stencil.
1026
1027 @lilypond[verbatim,quote]
1028 \\markup {
1029   \\column {
1030     \\fill-line {
1031       Words evenly spaced across the page
1032     }
1033     \\null
1034     \\fill-line {
1035       \\line { Text markups }
1036       \\line {
1037         \\italic { evenly spaced }
1038       }
1039       \\line { across the page }
1040     }
1041   }
1042 }
1043 @end lilypond"
1044   (let* ((orig-stencils (interpret-markup-list layout props args))
1045          (stencils
1046           (map (lambda (stc)
1047                  (if (ly:stencil-empty? stc)
1048                      point-stencil
1049                      stc)) orig-stencils))
1050          (text-widths
1051           (map (lambda (stc)
1052                  (if (ly:stencil-empty? stc)
1053                      0.0
1054                      (interval-length (ly:stencil-extent stc X))))
1055                stencils))
1056          (text-width (apply + text-widths))
1057          (word-count (length stencils))
1058          (line-width (or line-width (ly:output-def-lookup layout 'line-width)))
1059          (fill-space
1060           (cond
1061            ((= word-count 1)
1062             (list
1063              (/ (- line-width text-width) 2)
1064              (/ (- line-width text-width) 2)))
1065            ((= word-count 2)
1066             (list
1067              (- line-width text-width)))
1068            (else
1069             (get-fill-space word-count line-width word-space text-widths))))
1070
1071          (line-contents (if (= word-count 1)
1072                             (list
1073                              point-stencil
1074                              (car stencils)
1075                              point-stencil)
1076                             stencils)))
1077
1078     (if (null? (remove ly:stencil-empty? orig-stencils))
1079         empty-stencil
1080         (begin
1081           (if (= text-direction LEFT)
1082               (set! line-contents (reverse line-contents)))
1083           (set! line-contents
1084                 (stack-stencils-padding-list
1085                  X RIGHT fill-space line-contents))
1086           (if (> word-count 1)
1087               ;; shift s.t. stencils align on the left edge, even if
1088               ;; first stencil had negative X-extent (e.g. center-column)
1089               ;; (if word-count = 1, X-extents are already normalized in
1090               ;; the definition of line-contents)
1091               (set! line-contents
1092                     (ly:stencil-translate-axis
1093                      line-contents
1094                      (- (car (ly:stencil-extent (car stencils) X)))
1095                      X)))
1096           line-contents))))
1097
1098 (define-markup-command (line layout props args)
1099   (markup-list?)
1100   #:category align
1101   #:properties ((word-space)
1102                 (text-direction RIGHT))
1103   "Put @var{args} in a horizontal line.  The property @code{word-space}
1104 determines the space between markups in @var{args}.
1105
1106 @lilypond[verbatim,quote]
1107 \\markup {
1108   \\line {
1109     one two three
1110   }
1111 }
1112 @end lilypond"
1113   (let ((stencils (interpret-markup-list layout props args)))
1114     (if (= text-direction LEFT)
1115         (set! stencils (reverse stencils)))
1116     (stack-stencil-line
1117      word-space
1118      (remove ly:stencil-empty? stencils))))
1119
1120 (define-markup-command (concat layout props args)
1121   (markup-list?)
1122   #:category align
1123   "
1124 @cindex concatenating text
1125 @cindex ligatures in text
1126
1127 Concatenate @var{args} in a horizontal line, without spaces in between.
1128 Strings and simple markups are concatenated on the input level, allowing
1129 ligatures.  For example, @code{\\concat @{ \"f\" \\simple #\"i\" @}} is
1130 equivalent to @code{\"fi\"}.
1131
1132 @lilypond[verbatim,quote]
1133 \\markup {
1134   \\concat {
1135     one
1136     two
1137     three
1138   }
1139 }
1140 @end lilypond"
1141   (define (concat-string-args arg-list)
1142     (fold-right (lambda (arg result-list)
1143                   (let ((result (if (pair? result-list)
1144                                     (car result-list)
1145                                   '())))
1146                     (if (and (pair? arg) (eqv? (car arg) simple-markup))
1147                       (set! arg (cadr arg)))
1148                     (if (and (string? result) (string? arg))
1149                         (cons (string-append arg result) (cdr result-list))
1150                       (cons arg result-list))))
1151                 '()
1152                 arg-list))
1153
1154   (interpret-markup layout
1155                     (prepend-alist-chain 'word-space 0 props)
1156                     (make-line-markup (if (markup-command-list? args)
1157                                           args
1158                                           (concat-string-args args)))))
1159
1160 (define (wordwrap-stencils stencils
1161                            justify base-space line-width text-dir)
1162   "Perform simple wordwrap, return stencil of each line."
1163   (define space (if justify
1164                     ;; justify only stretches lines.
1165                     (* 0.7 base-space)
1166                     base-space))
1167   (define (take-list width space stencils
1168                      accumulator accumulated-width)
1169     "Return (head-list . tail) pair, with head-list fitting into width"
1170     (if (null? stencils)
1171         (cons accumulator stencils)
1172         (let* ((first (car stencils))
1173                (first-wid (cdr (ly:stencil-extent (car stencils) X)))
1174                (newwid (+ space first-wid accumulated-width)))
1175           (if (or (null? accumulator)
1176                   (< newwid width))
1177               (take-list width space
1178                          (cdr stencils)
1179                          (cons first accumulator)
1180                          newwid)
1181               (cons accumulator stencils)))))
1182   (let loop ((lines '())
1183              (todo stencils))
1184     (let* ((line-break (take-list line-width space todo
1185                                   '() 0.0))
1186            (line-stencils (car line-break))
1187            (space-left (- line-width
1188                           (apply + (map (lambda (x) (cdr (ly:stencil-extent x X)))
1189                                         line-stencils))))
1190            (line-word-space (cond ((not justify) space)
1191                                   ;; don't stretch last line of paragraph.
1192                                   ;; hmmm . bug - will overstretch the last line in some case.
1193                                   ((null? (cdr line-break))
1194                                    base-space)
1195                                   ((null? line-stencils) 0.0)
1196                                   ((null? (cdr line-stencils)) 0.0)
1197                                   (else (/ space-left (1- (length line-stencils))))))
1198            (line (stack-stencil-line line-word-space
1199                                      (if (= text-dir RIGHT)
1200                                          (reverse line-stencils)
1201                                          line-stencils))))
1202       (if (pair? (cdr line-break))
1203           (loop (cons line lines)
1204                 (cdr line-break))
1205           (begin
1206             (if (= text-dir LEFT)
1207                 (set! line
1208                       (ly:stencil-translate-axis
1209                        line
1210                        (- line-width (interval-end (ly:stencil-extent line X)))
1211                        X)))
1212             (reverse (cons line lines)))))))
1213
1214 (define-markup-list-command (wordwrap-internal layout props justify args)
1215   (boolean? markup-list?)
1216   #:properties ((line-width #f)
1217                 (word-space)
1218                 (text-direction RIGHT))
1219   "Internal markup list command used to define @code{\\justify} and @code{\\wordwrap}."
1220   (wordwrap-stencils (remove ly:stencil-empty?
1221                              (interpret-markup-list layout props args))
1222                      justify
1223                      word-space
1224                      (or line-width
1225                          (ly:output-def-lookup layout 'line-width))
1226                      text-direction))
1227
1228 (define-markup-command (justify layout props args)
1229   (markup-list?)
1230   #:category align
1231   #:properties ((baseline-skip)
1232                 wordwrap-internal-markup-list)
1233   "
1234 @cindex justifying text
1235
1236 Like @code{\\wordwrap}, but with lines stretched to justify the margins.
1237 Use @code{\\override #'(line-width . @var{X})} to set the line width;
1238 @var{X}@tie{}is the number of staff spaces.
1239
1240 @lilypond[verbatim,quote]
1241 \\markup {
1242   \\justify {
1243     Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed
1244     do eiusmod tempor incididunt ut labore et dolore magna aliqua.
1245     Ut enim ad minim veniam, quis nostrud exercitation ullamco
1246     laboris nisi ut aliquip ex ea commodo consequat.
1247   }
1248 }
1249 @end lilypond"
1250   (stack-lines DOWN 0.0 baseline-skip
1251                (wordwrap-internal-markup-list layout props #t args)))
1252
1253 (define-markup-command (wordwrap layout props args)
1254   (markup-list?)
1255   #:category align
1256   #:properties ((baseline-skip)
1257                 wordwrap-internal-markup-list)
1258   "Simple wordwrap.  Use @code{\\override #'(line-width . @var{X})} to set
1259 the line width, where @var{X} is the number of staff spaces.
1260
1261 @lilypond[verbatim,quote]
1262 \\markup {
1263   \\wordwrap {
1264     Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed
1265     do eiusmod tempor incididunt ut labore et dolore magna aliqua.
1266     Ut enim ad minim veniam, quis nostrud exercitation ullamco
1267     laboris nisi ut aliquip ex ea commodo consequat.
1268   }
1269 }
1270 @end lilypond"
1271   (stack-lines DOWN 0.0 baseline-skip
1272                (wordwrap-internal-markup-list layout props #f args)))
1273
1274 (define-markup-list-command (wordwrap-string-internal layout props justify arg)
1275   (boolean? string?)
1276   #:properties ((line-width)
1277                 (word-space)
1278                 (text-direction RIGHT))
1279   "Internal markup list command used to define @code{\\justify-string} and
1280 @code{\\wordwrap-string}."
1281   (let* ((para-strings (regexp-split
1282                         (string-regexp-substitute
1283                          "\r" "\n"
1284                          (string-regexp-substitute "\r\n" "\n" arg))
1285                         "\n[ \t\n]*\n[ \t\n]*"))
1286          (list-para-words (map (lambda (str)
1287                                  (regexp-split str "[ \t\n]+"))
1288                                para-strings))
1289          (para-lines (map (lambda (words)
1290                             (let* ((stencils
1291                                     (remove ly:stencil-empty?
1292                                             (map (lambda (x)
1293                                                    (interpret-markup layout props x))
1294                                                  words))))
1295                               (wordwrap-stencils stencils
1296                                                  justify word-space
1297                                                  line-width text-direction)))
1298                           list-para-words)))
1299     (apply append para-lines)))
1300
1301 (define-markup-command (wordwrap-string layout props arg)
1302   (string?)
1303   #:category align
1304   #:properties ((baseline-skip)
1305                 wordwrap-string-internal-markup-list)
1306   "Wordwrap a string.  Paragraphs may be separated with double newlines.
1307
1308 @lilypond[verbatim,quote]
1309 \\markup {
1310   \\override #'(line-width . 40)
1311   \\wordwrap-string #\"Lorem ipsum dolor sit amet, consectetur
1312       adipisicing elit, sed do eiusmod tempor incididunt ut labore
1313       et dolore magna aliqua.
1314
1315
1316       Ut enim ad minim veniam, quis nostrud exercitation ullamco
1317       laboris nisi ut aliquip ex ea commodo consequat.
1318
1319
1320       Excepteur sint occaecat cupidatat non proident, sunt in culpa
1321       qui officia deserunt mollit anim id est laborum\"
1322 }
1323 @end lilypond"
1324   (stack-lines DOWN 0.0 baseline-skip
1325                (wordwrap-string-internal-markup-list layout props #f arg)))
1326
1327 (define-markup-command (justify-string layout props arg)
1328   (string?)
1329   #:category align
1330   #:properties ((baseline-skip)
1331                 wordwrap-string-internal-markup-list)
1332   "Justify a string.  Paragraphs may be separated with double newlines
1333
1334 @lilypond[verbatim,quote]
1335 \\markup {
1336   \\override #'(line-width . 40)
1337   \\justify-string #\"Lorem ipsum dolor sit amet, consectetur
1338       adipisicing elit, sed do eiusmod tempor incididunt ut labore
1339       et dolore magna aliqua.
1340
1341
1342       Ut enim ad minim veniam, quis nostrud exercitation ullamco
1343       laboris nisi ut aliquip ex ea commodo consequat.
1344
1345
1346       Excepteur sint occaecat cupidatat non proident, sunt in culpa
1347       qui officia deserunt mollit anim id est laborum\"
1348 }
1349 @end lilypond"
1350   (stack-lines DOWN 0.0 baseline-skip
1351                (wordwrap-string-internal-markup-list layout props #t arg)))
1352
1353 (define-markup-command (wordwrap-field layout props symbol)
1354   (symbol?)
1355   #:category align
1356   "Wordwrap the data which has been assigned to @var{symbol}.
1357
1358 @lilypond[verbatim,quote]
1359 \\header {
1360   title = \"My title\"
1361   myText = \"Lorem ipsum dolor sit amet, consectetur adipisicing
1362     elit, sed do eiusmod tempor incididunt ut labore et dolore
1363     magna aliqua.  Ut enim ad minim veniam, quis nostrud
1364     exercitation ullamco laboris nisi ut aliquip ex ea commodo
1365     consequat.\"
1366 }
1367
1368 \\paper {
1369   bookTitleMarkup = \\markup {
1370     \\column {
1371       \\fill-line { \\fromproperty #'header:title }
1372       \\null
1373       \\wordwrap-field #'header:myText
1374     }
1375   }
1376 }
1377
1378 \\markup {
1379   \\null
1380 }
1381 @end lilypond"
1382   (let* ((m (chain-assoc-get symbol props)))
1383     (if (string? m)
1384         (wordwrap-string-markup layout props m)
1385         empty-stencil)))
1386
1387 (define-markup-command (justify-field layout props symbol)
1388   (symbol?)
1389   #:category align
1390   "Justify the data which has been assigned to @var{symbol}.
1391
1392 @lilypond[verbatim,quote]
1393 \\header {
1394   title = \"My title\"
1395   myText = \"Lorem ipsum dolor sit amet, consectetur adipisicing
1396     elit, sed do eiusmod tempor incididunt ut labore et dolore magna
1397     aliqua.  Ut enim ad minim veniam, quis nostrud exercitation ullamco
1398     laboris nisi ut aliquip ex ea commodo consequat.\"
1399 }
1400
1401 \\paper {
1402   bookTitleMarkup = \\markup {
1403     \\column {
1404       \\fill-line { \\fromproperty #'header:title }
1405       \\null
1406       \\justify-field #'header:myText
1407     }
1408   }
1409 }
1410
1411 \\markup {
1412   \\null
1413 }
1414 @end lilypond"
1415   (let* ((m (chain-assoc-get symbol props)))
1416     (if (string? m)
1417         (justify-string-markup layout props m)
1418         empty-stencil)))
1419
1420 (define-markup-command (combine layout props arg1 arg2)
1421   (markup? markup?)
1422   #:category align
1423   "
1424 @cindex merging text
1425
1426 Print two markups on top of each other.
1427
1428 Note: @code{\\combine} cannot take a list of markups enclosed in
1429 curly braces as an argument; the follow example will not compile:
1430
1431 @example
1432 \\combine @{ a list @}
1433 @end example
1434
1435 @lilypond[verbatim,quote]
1436 \\markup {
1437   \\fontsize #5
1438   \\override #'(thickness . 2)
1439   \\combine
1440     \\draw-line #'(0 . 4)
1441     \\arrow-head #Y #DOWN ##f
1442 }
1443 @end lilypond"
1444   (let* ((s1 (interpret-markup layout props arg1))
1445          (s2 (interpret-markup layout props arg2)))
1446     (ly:stencil-add s1 s2)))
1447
1448 ;;
1449 ;; TODO: should extract baseline-skip from each argument somehow..
1450 ;;
1451 (define-markup-command (column layout props args)
1452   (markup-list?)
1453   #:category align
1454   #:properties ((baseline-skip))
1455   "
1456 @cindex stacking text in a column
1457
1458 Stack the markups in @var{args} vertically.  The property
1459 @code{baseline-skip} determines the space between markups
1460 in @var{args}.
1461
1462 @lilypond[verbatim,quote]
1463 \\markup {
1464   \\column {
1465     one
1466     two
1467     three
1468   }
1469 }
1470 @end lilypond"
1471   (let ((arg-stencils (interpret-markup-list layout props args)))
1472     (stack-lines -1 0.0 baseline-skip
1473                  (remove ly:stencil-empty? arg-stencils))))
1474
1475 (define-markup-command (dir-column layout props args)
1476   (markup-list?)
1477   #:category align
1478   #:properties ((direction)
1479                 (baseline-skip))
1480   "
1481 @cindex changing direction of text columns
1482
1483 Make a column of @var{args}, going up or down, depending on the
1484 setting of the @code{direction} layout property.
1485
1486 @lilypond[verbatim,quote]
1487 \\markup {
1488   \\override #`(direction . ,UP) {
1489     \\dir-column {
1490       going up
1491     }
1492   }
1493   \\hspace #1
1494   \\dir-column {
1495     going down
1496   }
1497   \\hspace #1
1498   \\override #'(direction . 1) {
1499     \\dir-column {
1500       going up
1501     }
1502   }
1503 }
1504 @end lilypond"
1505   (stack-lines (if (number? direction) direction -1)
1506                0.0
1507                baseline-skip
1508                (interpret-markup-list layout props args)))
1509
1510 (define (general-column align-dir baseline mols)
1511   "Stack @var{mols} vertically, aligned to  @var{align-dir} horizontally."
1512
1513   (let* ((aligned-mols (map (lambda (x) (ly:stencil-aligned-to x X align-dir)) mols))
1514          (stacked-stencil (stack-lines -1 0.0 baseline aligned-mols))
1515          (stacked-extent (ly:stencil-extent stacked-stencil X)))
1516     (ly:stencil-translate-axis stacked-stencil (- (car stacked-extent)) X )))
1517
1518 (define-markup-command (center-column layout props args)
1519   (markup-list?)
1520   #:category align
1521   #:properties ((baseline-skip))
1522   "
1523 @cindex centering a column of text
1524
1525 Put @code{args} in a centered column.
1526
1527 @lilypond[verbatim,quote]
1528 \\markup {
1529   \\center-column {
1530     one
1531     two
1532     three
1533   }
1534 }
1535 @end lilypond"
1536   (general-column CENTER baseline-skip (interpret-markup-list layout props args)))
1537
1538 (define-markup-command (left-column layout props args)
1539   (markup-list?)
1540   #:category align
1541   #:properties ((baseline-skip))
1542  "
1543 @cindex text columns, left-aligned
1544
1545 Put @code{args} in a left-aligned column.
1546
1547 @lilypond[verbatim,quote]
1548 \\markup {
1549   \\left-column {
1550     one
1551     two
1552     three
1553   }
1554 }
1555 @end lilypond"
1556   (general-column LEFT baseline-skip (interpret-markup-list layout props args)))
1557
1558 (define-markup-command (right-column layout props args)
1559   (markup-list?)
1560   #:category align
1561   #:properties ((baseline-skip))
1562  "
1563 @cindex text columns, right-aligned
1564
1565 Put @code{args} in a right-aligned column.
1566
1567 @lilypond[verbatim,quote]
1568 \\markup {
1569   \\right-column {
1570     one
1571     two
1572     three
1573   }
1574 }
1575 @end lilypond"
1576   (general-column RIGHT baseline-skip (interpret-markup-list layout props args)))
1577
1578 (define-markup-command (vcenter layout props arg)
1579   (markup?)
1580   #:category align
1581   "
1582 @cindex vertically centering text
1583
1584 Align @code{arg} to its Y@tie{}center.
1585
1586 @lilypond[verbatim,quote]
1587 \\markup {
1588   one
1589   \\vcenter
1590   two
1591   three
1592 }
1593 @end lilypond"
1594   (let* ((mol (interpret-markup layout props arg)))
1595     (ly:stencil-aligned-to mol Y CENTER)))
1596
1597 (define-markup-command (center-align layout props arg)
1598   (markup?)
1599   #:category align
1600   "
1601 @cindex horizontally centering text
1602
1603 Align @code{arg} to its X@tie{}center.
1604
1605 @lilypond[verbatim,quote]
1606 \\markup {
1607   \\column {
1608     one
1609     \\center-align
1610     two
1611     three
1612   }
1613 }
1614 @end lilypond"
1615   (let* ((mol (interpret-markup layout props arg)))
1616     (ly:stencil-aligned-to mol X CENTER)))
1617
1618 (define-markup-command (right-align layout props arg)
1619   (markup?)
1620   #:category align
1621   "
1622 @cindex right aligning text
1623
1624 Align @var{arg} on its right edge.
1625
1626 @lilypond[verbatim,quote]
1627 \\markup {
1628   \\column {
1629     one
1630     \\right-align
1631     two
1632     three
1633   }
1634 }
1635 @end lilypond"
1636   (let* ((m (interpret-markup layout props arg)))
1637     (ly:stencil-aligned-to m X RIGHT)))
1638
1639 (define-markup-command (left-align layout props arg)
1640   (markup?)
1641   #:category align
1642   "
1643 @cindex left aligning text
1644
1645 Align @var{arg} on its left edge.
1646
1647 @lilypond[verbatim,quote]
1648 \\markup {
1649   \\column {
1650     one
1651     \\left-align
1652     two
1653     three
1654   }
1655 }
1656 @end lilypond"
1657   (let* ((m (interpret-markup layout props arg)))
1658     (ly:stencil-aligned-to m X LEFT)))
1659
1660 (define-markup-command (general-align layout props axis dir arg)
1661   (integer? number? markup?)
1662   #:category align
1663   "
1664 @cindex controlling general text alignment
1665
1666 Align @var{arg} in @var{axis} direction to the @var{dir} side.
1667
1668 @lilypond[verbatim,quote]
1669 \\markup {
1670   \\column {
1671     one
1672     \\general-align #X #LEFT
1673     two
1674     three
1675     \\null
1676     one
1677     \\general-align #X #CENTER
1678     two
1679     three
1680     \\null
1681     \\line {
1682       one
1683       \\general-align #Y #UP
1684       two
1685       three
1686     }
1687     \\null
1688     \\line {
1689       one
1690       \\general-align #Y #3.2
1691       two
1692       three
1693     }
1694   }
1695 }
1696 @end lilypond"
1697   (let* ((m (interpret-markup layout props arg)))
1698     (ly:stencil-aligned-to m axis dir)))
1699
1700 (define-markup-command (halign layout props dir arg)
1701   (number? markup?)
1702   #:category align
1703   "
1704 @cindex setting horizontal text alignment
1705
1706 Set horizontal alignment.  If @var{dir} is @w{@code{-1}}, then it is
1707 left-aligned, while @code{+1} is right.  Values in between interpolate
1708 alignment accordingly.
1709
1710 @lilypond[verbatim,quote]
1711 \\markup {
1712   \\column {
1713     one
1714     \\halign #LEFT
1715     two
1716     three
1717     \\null
1718     one
1719     \\halign #CENTER
1720     two
1721     three
1722     \\null
1723     one
1724     \\halign #RIGHT
1725     two
1726     three
1727     \\null
1728     one
1729     \\halign #-5
1730     two
1731     three
1732   }
1733 }
1734 @end lilypond"
1735   (let* ((m (interpret-markup layout props arg)))
1736     (ly:stencil-aligned-to m X dir)))
1737
1738 (define-markup-command (with-dimensions layout props x y arg)
1739   (number-pair? number-pair? markup?)
1740   #:category other
1741   "
1742 @cindex setting extent of text objects
1743
1744 Set the dimensions of @var{arg} to @var{x} and@tie{}@var{y}."
1745   (let* ((m (interpret-markup layout props arg)))
1746     (ly:make-stencil (ly:stencil-expr m) x y)))
1747
1748 (define-markup-command (pad-around layout props amount arg)
1749   (number? markup?)
1750   #:category align
1751   "Add padding @var{amount} all around @var{arg}.
1752
1753 @lilypond[verbatim,quote]
1754 \\markup {
1755   \\box {
1756     default
1757   }
1758   \\hspace #2
1759   \\box {
1760     \\pad-around #0.5 {
1761       padded
1762     }
1763   }
1764 }
1765 @end lilypond"
1766   (let* ((m (interpret-markup layout props arg))
1767          (x (ly:stencil-extent m X))
1768          (y (ly:stencil-extent m Y)))
1769     (ly:make-stencil (ly:stencil-expr m)
1770                      (interval-widen x amount)
1771                      (interval-widen y amount))))
1772
1773 (define-markup-command (pad-x layout props amount arg)
1774   (number? markup?)
1775   #:category align
1776   "
1777 @cindex padding text horizontally
1778
1779 Add padding @var{amount} around @var{arg} in the X@tie{}direction.
1780
1781 @lilypond[verbatim,quote]
1782 \\markup {
1783   \\box {
1784     default
1785   }
1786   \\hspace #4
1787   \\box {
1788     \\pad-x #2 {
1789       padded
1790     }
1791   }
1792 }
1793 @end lilypond"
1794   (let* ((m (interpret-markup layout props arg))
1795          (x (ly:stencil-extent m X))
1796          (y (ly:stencil-extent m Y)))
1797     (ly:make-stencil (ly:stencil-expr m)
1798                      (interval-widen x amount)
1799                      y)))
1800
1801 (define-markup-command (put-adjacent layout props axis dir arg1 arg2)
1802   (integer? ly:dir? markup? markup?)
1803   #:category align
1804   "Put @var{arg2} next to @var{arg1}, without moving @var{arg1}."
1805   (let ((m1 (interpret-markup layout props arg1))
1806         (m2 (interpret-markup layout props arg2)))
1807     (ly:stencil-combine-at-edge m1 axis dir m2 0.0)))
1808
1809 (define-markup-command (transparent layout props arg)
1810   (markup?)
1811   #:category other
1812   "Make @var{arg} transparent.
1813
1814 @lilypond[verbatim,quote]
1815 \\markup {
1816   \\transparent {
1817     invisible text
1818   }
1819 }
1820 @end lilypond"
1821   (let* ((m (interpret-markup layout props arg))
1822          (x (ly:stencil-extent m X))
1823          (y (ly:stencil-extent m Y)))
1824     (ly:make-stencil "" x y)))
1825
1826 (define-markup-command (pad-to-box layout props x-ext y-ext arg)
1827   (number-pair? number-pair? markup?)
1828   #:category align
1829   "Make @var{arg} take at least @var{x-ext}, @var{y-ext} space.
1830
1831 @lilypond[verbatim,quote]
1832 \\markup {
1833   \\box {
1834     default
1835   }
1836   \\hspace #4
1837   \\box {
1838     \\pad-to-box #'(0 . 10) #'(0 . 3) {
1839       padded
1840     }
1841   }
1842 }
1843 @end lilypond"
1844   (let* ((m (interpret-markup layout props arg))
1845          (x (ly:stencil-extent m X))
1846          (y (ly:stencil-extent m Y)))
1847     (ly:make-stencil (ly:stencil-expr m)
1848                      (interval-union x-ext x)
1849                      (interval-union y-ext y))))
1850
1851 (define-markup-command (hcenter-in layout props length arg)
1852   (number? markup?)
1853   #:category align
1854   "Center @var{arg} horizontally within a box of extending
1855 @var{length}/2 to the left and right.
1856
1857 @lilypond[quote,verbatim]
1858 \\new StaffGroup <<
1859   \\new Staff {
1860     \\set Staff.instrumentName = \\markup {
1861       \\hcenter-in #12
1862       Oboe
1863     }
1864     c''1
1865   }
1866   \\new Staff {
1867     \\set Staff.instrumentName = \\markup {
1868       \\hcenter-in #12
1869       Bassoon
1870     }
1871     \\clef tenor
1872     c'1
1873   }
1874 >>
1875 @end lilypond"
1876   (interpret-markup layout props
1877                     (make-pad-to-box-markup
1878                      (cons (/ length -2) (/ length 2))
1879                      '(0 . 0)
1880                      (make-center-align-markup arg))))
1881
1882 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1883 ;; property
1884 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1885
1886 (define-markup-command (fromproperty layout props symbol)
1887   (symbol?)
1888   #:category other
1889   "Read the @var{symbol} from property settings, and produce a stencil
1890 from the markup contained within.  If @var{symbol} is not defined, it
1891 returns an empty markup.
1892
1893 @lilypond[verbatim,quote]
1894 \\header {
1895   myTitle = \"myTitle\"
1896   title = \\markup {
1897     from
1898     \\italic
1899     \\fromproperty #'header:myTitle
1900   }
1901 }
1902 \\markup {
1903   \\null
1904 }
1905 @end lilypond"
1906   (let ((m (chain-assoc-get symbol props)))
1907     (if (markup? m)
1908         (interpret-markup layout props m)
1909         empty-stencil)))
1910
1911 (define-markup-command (on-the-fly layout props procedure arg)
1912   (symbol? markup?)
1913   #:category other
1914   "Apply the @var{procedure} markup command to @var{arg}.
1915 @var{procedure} should take a single argument."
1916   (let ((anonymous-with-signature (lambda (layout props arg) (procedure layout props arg))))
1917     (set-object-property! anonymous-with-signature
1918                           'markup-signature
1919                           (list markup?))
1920     (interpret-markup layout props (list anonymous-with-signature arg))))
1921
1922 (define-markup-command (footnote layout props mkup note)
1923   (markup? markup?)
1924   #:category other
1925   "Have footnote @var{note} act as an annotation to the markup @var{mkup}.
1926
1927 @lilypond[verbatim,quote]
1928 \\markup {
1929   \\auto-footnote a b
1930   \\override #'(padding . 0.2)
1931   \\auto-footnote c d
1932 }
1933 @end lilypond
1934 The footnote will not be annotated automatically."
1935   (ly:stencil-combine-at-edge
1936     (interpret-markup layout props mkup)
1937     X
1938     RIGHT
1939     (ly:make-stencil
1940       `(footnote (gensym "footnote") #f ,(interpret-markup layout props note))
1941       '(0 . 0)
1942       '(0 . 0))
1943     0.0))
1944
1945 (define-markup-command (auto-footnote layout props mkup note)
1946   (markup? markup?)
1947   #:category other
1948   #:properties ((raise 0.5)
1949                 (padding 0.0))
1950   "Have footnote @var{note} act as an annotation to the markup @var{mkup}.
1951
1952 @lilypond[verbatim,quote]
1953 \\markup {
1954   \\auto-footnote a b
1955   \\override #'(padding . 0.2)
1956   \\auto-footnote c d
1957 }
1958 @end lilypond
1959 The footnote will be annotated automatically."
1960   (let* ((markup-stencil (interpret-markup layout props mkup))
1961          (auto-numbering (ly:output-def-lookup layout
1962                                                'footnote-auto-numbering))
1963          (footnote-hash (gensym "footnote"))
1964          (stencil-seed 0)
1965          (gauge-stencil (if auto-numbering
1966                             (interpret-markup
1967                               layout
1968                               props
1969                               ((ly:output-def-lookup
1970                                  layout
1971                                  'footnote-numbering-function)
1972                                 stencil-seed))
1973                             empty-stencil))
1974          (x-ext (if auto-numbering
1975                     (ly:stencil-extent gauge-stencil X)
1976                     '(0 . 0)))
1977          (y-ext (if auto-numbering
1978                     (ly:stencil-extent gauge-stencil Y)
1979                     '(0 . 0)))
1980          (footnote-number
1981            (if auto-numbering
1982              `(delay-stencil-evaluation
1983                 ,(delay
1984                   (ly:stencil-expr
1985                     (let* ((table
1986                             (ly:output-def-lookup layout
1987                                                   'number-footnote-table))
1988                            (footnote-stencil (if (list? table)
1989                                                  (assoc-get footnote-hash
1990                                                             table)
1991                                                  empty-stencil))
1992                            (footnote-stencil (if (ly:stencil? footnote-stencil)
1993                                                  footnote-stencil
1994                                                  (begin
1995                                                    (ly:programming-error
1996 "Cannot find correct footnote for a markup object.")
1997                                                    empty-stencil)))
1998                            (gap (- (interval-length x-ext)
1999                                    (interval-length
2000                                      (ly:stencil-extent footnote-stencil X))))
2001                            (y-trans (- (+ (cdr y-ext)
2002                                           raise)
2003                                        (cdr (ly:stencil-extent footnote-stencil
2004                                                                Y)))))
2005                       (ly:stencil-translate footnote-stencil
2006                                             (cons gap y-trans))))))
2007              '()))
2008          (main-stencil (ly:stencil-combine-at-edge
2009                          markup-stencil
2010                          X
2011                          RIGHT
2012                          (ly:make-stencil footnote-number x-ext y-ext)
2013                          padding)))
2014   (ly:stencil-add
2015     main-stencil
2016     (ly:make-stencil
2017       `(footnote ,footnote-hash #t ,(interpret-markup layout props note))
2018       '(0 . 0)
2019       '(0 . 0)))))
2020
2021 (define-markup-command (override layout props new-prop arg)
2022   (pair? markup?)
2023   #:category other
2024   "
2025 @cindex overriding properties within text markup
2026
2027 Add the argument @var{new-prop} to the property list.  Properties
2028 may be any property supported by @rinternals{font-interface},
2029 @rinternals{text-interface} and
2030 @rinternals{instrument-specific-markup-interface}.
2031
2032 @lilypond[verbatim,quote]
2033 \\markup {
2034   \\line {
2035     \\column {
2036       default
2037       baseline-skip
2038     }
2039     \\hspace #2
2040     \\override #'(baseline-skip . 4) {
2041       \\column {
2042         increased
2043         baseline-skip
2044       }
2045     }
2046   }
2047 }
2048 @end lilypond"
2049   (interpret-markup layout (cons (list new-prop) props) arg))
2050
2051 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2052 ;; files
2053 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2054
2055 (define-markup-command (verbatim-file layout props name)
2056   (string?)
2057   #:category other
2058   "Read the contents of file @var{name}, and include it verbatim.
2059
2060 @lilypond[verbatim,quote]
2061 \\markup {
2062   \\verbatim-file #\"simple.ly\"
2063 }
2064 @end lilypond"
2065   (interpret-markup layout props
2066                     (if  (ly:get-option 'safe)
2067                          "verbatim-file disabled in safe mode"
2068                          (let* ((str (ly:gulp-file name))
2069                                 (lines (string-split str #\nl)))
2070                            (make-typewriter-markup
2071                             (make-column-markup lines))))))
2072
2073 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2074 ;; fonts.
2075 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2076
2077
2078 (define-markup-command (smaller layout props arg)
2079   (markup?)
2080   #:category font
2081   "Decrease the font size relative to the current setting.
2082
2083 @lilypond[verbatim,quote]
2084 \\markup {
2085   \\fontsize #3.5 {
2086     some large text
2087     \\hspace #2
2088     \\smaller {
2089       a bit smaller
2090     }
2091     \\hspace #2
2092     more large text
2093   }
2094 }
2095 @end lilypond"
2096   (interpret-markup layout props
2097    `(,fontsize-markup -1 ,arg)))
2098
2099 (define-markup-command (larger layout props arg)
2100   (markup?)
2101   #:category font
2102   "Increase the font size relative to the current setting.
2103
2104 @lilypond[verbatim,quote]
2105 \\markup {
2106   default
2107   \\hspace #2
2108   \\larger
2109   larger
2110 }
2111 @end lilypond"
2112   (interpret-markup layout props
2113    `(,fontsize-markup 1 ,arg)))
2114
2115 (define-markup-command (finger layout props arg)
2116   (markup?)
2117   #:category font
2118   "Set @var{arg} as small numbers.
2119
2120 @lilypond[verbatim,quote]
2121 \\markup {
2122   \\finger {
2123     1 2 3 4 5
2124   }
2125 }
2126 @end lilypond"
2127   (interpret-markup layout
2128                     (cons '((font-size . -5) (font-encoding . fetaText)) props)
2129                     arg))
2130
2131 (define-markup-command (abs-fontsize layout props size arg)
2132   (number? markup?)
2133   #:category font
2134   "Use @var{size} as the absolute font size to display @var{arg}.
2135 Adjusts @code{baseline-skip} and @code{word-space} accordingly.
2136
2137 @lilypond[verbatim,quote]
2138 \\markup {
2139   default text font size
2140   \\hspace #2
2141   \\abs-fontsize #16 { text font size 16 }
2142   \\hspace #2
2143   \\abs-fontsize #12 { text font size 12 }
2144 }
2145 @end lilypond"
2146   (let* ((ref-size (ly:output-def-lookup layout 'text-font-size 12))
2147          (text-props (list (ly:output-def-lookup layout 'text-font-defaults)))
2148          (ref-word-space (chain-assoc-get 'word-space text-props 0.6))
2149          (ref-baseline (chain-assoc-get 'baseline-skip text-props 3))
2150          (magnification (/ size ref-size)))
2151     (interpret-markup layout
2152                       (cons `((baseline-skip . ,(* magnification ref-baseline))
2153                               (word-space . ,(* magnification ref-word-space))
2154                               (font-size . ,(magnification->font-size magnification)))
2155                             props)
2156                       arg)))
2157
2158 (define-markup-command (fontsize layout props increment arg)
2159   (number? markup?)
2160   #:category font
2161   #:properties ((font-size 0)
2162                 (word-space 1)
2163                 (baseline-skip 2))
2164   "Add @var{increment} to the font-size.  Adjusts @code{baseline-skip}
2165 accordingly.
2166
2167 @lilypond[verbatim,quote]
2168 \\markup {
2169   default
2170   \\hspace #2
2171   \\fontsize #-1.5
2172   smaller
2173 }
2174 @end lilypond"
2175   (let ((entries (list
2176                   (cons 'baseline-skip (* baseline-skip (magstep increment)))
2177                   (cons 'word-space (* word-space (magstep increment)))
2178                   (cons 'font-size (+ font-size increment)))))
2179     (interpret-markup layout (cons entries props) arg)))
2180
2181 (define-markup-command (magnify layout props sz arg)
2182   (number? markup?)
2183   #:category font
2184   "
2185 @cindex magnifying text
2186
2187 Set the font magnification for its argument.  In the following
2188 example, the middle@tie{}A is 10% larger:
2189
2190 @example
2191 A \\magnify #1.1 @{ A @} A
2192 @end example
2193
2194 Note: Magnification only works if a font name is explicitly selected.
2195 Use @code{\\fontsize} otherwise.
2196
2197 @lilypond[verbatim,quote]
2198 \\markup {
2199   default
2200   \\hspace #2
2201   \\magnify #1.5 {
2202     50% larger
2203   }
2204 }
2205 @end lilypond"
2206   (interpret-markup
2207    layout
2208    (prepend-alist-chain 'font-size (magnification->font-size sz) props)
2209    arg))
2210
2211 (define-markup-command (bold layout props arg)
2212   (markup?)
2213   #:category font
2214   "Switch to bold font-series.
2215
2216 @lilypond[verbatim,quote]
2217 \\markup {
2218   default
2219   \\hspace #2
2220   \\bold
2221   bold
2222 }
2223 @end lilypond"
2224   (interpret-markup layout (prepend-alist-chain 'font-series 'bold props) arg))
2225
2226 (define-markup-command (sans layout props arg)
2227   (markup?)
2228   #:category font
2229   "Switch to the sans serif font family.
2230
2231 @lilypond[verbatim,quote]
2232 \\markup {
2233   default
2234   \\hspace #2
2235   \\sans {
2236     sans serif
2237   }
2238 }
2239 @end lilypond"
2240   (interpret-markup layout (prepend-alist-chain 'font-family 'sans props) arg))
2241
2242 (define-markup-command (number layout props arg)
2243   (markup?)
2244   #:category font
2245   "Set font family to @code{number}, which yields the font used for
2246 time signatures and fingerings.  This font contains numbers and
2247 some punctuation; it has no letters.
2248
2249 @lilypond[verbatim,quote]
2250 \\markup {
2251   \\number {
2252     0 1 2 3 4 5 6 7 8 9 . ,
2253   }
2254 }
2255 @end lilypond"
2256   (interpret-markup layout (prepend-alist-chain 'font-encoding 'fetaText props) arg))
2257
2258 (define-markup-command (roman layout props arg)
2259   (markup?)
2260   #:category font
2261   "Set font family to @code{roman}.
2262
2263 @lilypond[verbatim,quote]
2264 \\markup {
2265   \\sans \\bold {
2266     sans serif, bold
2267     \\hspace #2
2268     \\roman {
2269       text in roman font family
2270     }
2271     \\hspace #2
2272     return to sans
2273   }
2274 }
2275 @end lilypond"
2276   (interpret-markup layout (prepend-alist-chain 'font-family 'roman props) arg))
2277
2278 (define-markup-command (huge layout props arg)
2279   (markup?)
2280   #:category font
2281   "Set font size to +2.
2282
2283 @lilypond[verbatim,quote]
2284 \\markup {
2285   default
2286   \\hspace #2
2287   \\huge
2288   huge
2289 }
2290 @end lilypond"
2291   (interpret-markup layout (prepend-alist-chain 'font-size 2 props) arg))
2292
2293 (define-markup-command (large layout props arg)
2294   (markup?)
2295   #:category font
2296   "Set font size to +1.
2297
2298 @lilypond[verbatim,quote]
2299 \\markup {
2300   default
2301   \\hspace #2
2302   \\large
2303   large
2304 }
2305 @end lilypond"
2306   (interpret-markup layout (prepend-alist-chain 'font-size 1 props) arg))
2307
2308 (define-markup-command (normalsize layout props arg)
2309   (markup?)
2310   #:category font
2311   "Set font size to default.
2312
2313 @lilypond[verbatim,quote]
2314 \\markup {
2315   \\teeny {
2316     this is very small
2317     \\hspace #2
2318     \\normalsize {
2319       normal size
2320     }
2321     \\hspace #2
2322     teeny again
2323   }
2324 }
2325 @end lilypond"
2326   (interpret-markup layout (prepend-alist-chain 'font-size 0 props) arg))
2327
2328 (define-markup-command (small layout props arg)
2329   (markup?)
2330   #:category font
2331   "Set font size to -1.
2332
2333 @lilypond[verbatim,quote]
2334 \\markup {
2335   default
2336   \\hspace #2
2337   \\small
2338   small
2339 }
2340 @end lilypond"
2341   (interpret-markup layout (prepend-alist-chain 'font-size -1 props) arg))
2342
2343 (define-markup-command (tiny layout props arg)
2344   (markup?)
2345   #:category font
2346   "Set font size to -2.
2347
2348 @lilypond[verbatim,quote]
2349 \\markup {
2350   default
2351   \\hspace #2
2352   \\tiny
2353   tiny
2354 }
2355 @end lilypond"
2356   (interpret-markup layout (prepend-alist-chain 'font-size -2 props) arg))
2357
2358 (define-markup-command (teeny layout props arg)
2359   (markup?)
2360   #:category font
2361   "Set font size to -3.
2362
2363 @lilypond[verbatim,quote]
2364 \\markup {
2365   default
2366   \\hspace #2
2367   \\teeny
2368   teeny
2369 }
2370 @end lilypond"
2371   (interpret-markup layout (prepend-alist-chain 'font-size -3 props) arg))
2372
2373 (define-markup-command (fontCaps layout props arg)
2374   (markup?)
2375   #:category font
2376   "Set @code{font-shape} to @code{caps}
2377
2378 Note: @code{\\fontCaps} requires the installation and selection of
2379 fonts which support the @code{caps} font shape."
2380   (interpret-markup layout (prepend-alist-chain 'font-shape 'caps props) arg))
2381
2382 ;; Poor man's caps
2383 (define-markup-command (smallCaps layout props arg)
2384   (markup?)
2385   #:category font
2386   "Emit @var{arg} as small caps.
2387
2388 Note: @code{\\smallCaps} does not support accented characters.
2389
2390 @lilypond[verbatim,quote]
2391 \\markup {
2392   default
2393   \\hspace #2
2394   \\smallCaps {
2395     Text in small caps
2396   }
2397 }
2398 @end lilypond"
2399   (define (char-list->markup chars lower)
2400     (let ((final-string (string-upcase (reverse-list->string chars))))
2401       (if lower
2402           (markup #:fontsize -2 final-string)
2403           final-string)))
2404   (define (make-small-caps rest-chars currents current-is-lower prev-result)
2405     (if (null? rest-chars)
2406         (make-concat-markup
2407           (reverse! (cons (char-list->markup currents current-is-lower)
2408                           prev-result)))
2409         (let* ((ch (car rest-chars))
2410                (is-lower (char-lower-case? ch)))
2411           (if (or (and current-is-lower is-lower)
2412                   (and (not current-is-lower) (not is-lower)))
2413               (make-small-caps (cdr rest-chars)
2414                                (cons ch currents)
2415                                is-lower
2416                                prev-result)
2417               (make-small-caps (cdr rest-chars)
2418                                (list ch)
2419                                is-lower
2420                                (if (null? currents)
2421                                    prev-result
2422                                    (cons (char-list->markup
2423                                             currents current-is-lower)
2424                                          prev-result)))))))
2425   (interpret-markup layout props
2426     (if (string? arg)
2427         (make-small-caps (string->list arg) (list) #f (list))
2428         arg)))
2429
2430 (define-markup-command (caps layout props arg)
2431   (markup?)
2432   #:category font
2433   "Copy of the @code{\\smallCaps} command.
2434
2435 @lilypond[verbatim,quote]
2436 \\markup {
2437   default
2438   \\hspace #2
2439   \\caps {
2440     Text in small caps
2441   }
2442 }
2443 @end lilypond"
2444   (interpret-markup layout props (make-smallCaps-markup arg)))
2445
2446 (define-markup-command (dynamic layout props arg)
2447   (markup?)
2448   #:category font
2449   "Use the dynamic font.  This font only contains @b{s}, @b{f}, @b{m},
2450 @b{z}, @b{p}, and @b{r}.  When producing phrases, like
2451 @q{pi@`{u}@tie{}@b{f}}, the normal words (like @q{pi@`{u}}) should be
2452 done in a different font.  The recommended font for this is bold and italic.
2453 @lilypond[verbatim,quote]
2454 \\markup {
2455   \\dynamic {
2456     sfzp
2457   }
2458 }
2459 @end lilypond"
2460   (interpret-markup
2461    layout (prepend-alist-chain 'font-encoding 'fetaText props) arg))
2462
2463 (define-markup-command (text layout props arg)
2464   (markup?)
2465   #:category font
2466   "Use a text font instead of music symbol or music alphabet font.
2467
2468 @lilypond[verbatim,quote]
2469 \\markup {
2470   \\number {
2471     1, 2,
2472     \\text {
2473       three, four,
2474     }
2475     5
2476   }
2477 }
2478 @end lilypond"
2479
2480   ;; ugh - latin1
2481   (interpret-markup layout (prepend-alist-chain 'font-encoding 'latin1 props)
2482                     arg))
2483
2484 (define-markup-command (italic layout props arg)
2485   (markup?)
2486   #:category font
2487   "Use italic @code{font-shape} for @var{arg}.
2488
2489 @lilypond[verbatim,quote]
2490 \\markup {
2491   default
2492   \\hspace #2
2493   \\italic
2494   italic
2495 }
2496 @end lilypond"
2497   (interpret-markup layout (prepend-alist-chain 'font-shape 'italic props) arg))
2498
2499 (define-markup-command (typewriter layout props arg)
2500   (markup?)
2501   #:category font
2502   "Use @code{font-family} typewriter for @var{arg}.
2503
2504 @lilypond[verbatim,quote]
2505 \\markup {
2506   default
2507   \\hspace #2
2508   \\typewriter
2509   typewriter
2510 }
2511 @end lilypond"
2512   (interpret-markup
2513    layout (prepend-alist-chain 'font-family 'typewriter props) arg))
2514
2515 (define-markup-command (upright layout props arg)
2516   (markup?)
2517   #:category font
2518   "Set @code{font-shape} to @code{upright}.  This is the opposite
2519 of @code{italic}.
2520
2521 @lilypond[verbatim,quote]
2522 \\markup {
2523   \\italic {
2524     italic text
2525     \\hspace #2
2526     \\upright {
2527       upright text
2528     }
2529     \\hspace #2
2530     italic again
2531   }
2532 }
2533 @end lilypond"
2534   (interpret-markup
2535    layout (prepend-alist-chain 'font-shape 'upright props) arg))
2536
2537 (define-markup-command (medium layout props arg)
2538   (markup?)
2539   #:category font
2540   "Switch to medium font-series (in contrast to bold).
2541
2542 @lilypond[verbatim,quote]
2543 \\markup {
2544   \\bold {
2545     some bold text
2546     \\hspace #2
2547     \\medium {
2548       medium font series
2549     }
2550     \\hspace #2
2551     bold again
2552   }
2553 }
2554 @end lilypond"
2555   (interpret-markup layout (prepend-alist-chain 'font-series 'medium props)
2556                     arg))
2557
2558 (define-markup-command (normal-text layout props arg)
2559   (markup?)
2560   #:category font
2561   "Set all font related properties (except the size) to get the default
2562 normal text font, no matter what font was used earlier.
2563
2564 @lilypond[verbatim,quote]
2565 \\markup {
2566   \\huge \\bold \\sans \\caps {
2567     huge bold sans caps
2568     \\hspace #2
2569     \\normal-text {
2570       huge normal
2571     }
2572     \\hspace #2
2573     as before
2574   }
2575 }
2576 @end lilypond"
2577   ;; ugh - latin1
2578   (interpret-markup layout
2579                     (cons '((font-family . roman) (font-shape . upright)
2580                             (font-series . medium) (font-encoding . latin1))
2581                           props)
2582                     arg))
2583
2584 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2585 ;; symbols.
2586 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2587
2588 (define-markup-command (musicglyph layout props glyph-name)
2589   (string?)
2590   #:category music
2591   "@var{glyph-name} is converted to a musical symbol; for example,
2592 @code{\\musicglyph #\"accidentals.natural\"} selects the natural sign from
2593 the music font.  See @ruser{The Feta font} for a complete listing of
2594 the possible glyphs.
2595
2596 @lilypond[verbatim,quote]
2597 \\markup {
2598   \\musicglyph #\"f\"
2599   \\musicglyph #\"rests.2\"
2600   \\musicglyph #\"clefs.G_change\"
2601 }
2602 @end lilypond"
2603   (let* ((font (ly:paper-get-font layout
2604                                   (cons '((font-encoding . fetaMusic)
2605                                           (font-name . #f))
2606
2607                                                  props)))
2608          (glyph (ly:font-get-glyph font glyph-name)))
2609     (if (null? (ly:stencil-expr glyph))
2610         (ly:warning (_ "Cannot find glyph ~a") glyph-name))
2611
2612     glyph))
2613
2614 (define-markup-command (doublesharp layout props)
2615   ()
2616   #:category music
2617   "Draw a double sharp symbol.
2618
2619 @lilypond[verbatim,quote]
2620 \\markup {
2621   \\doublesharp
2622 }
2623 @end lilypond"
2624   (interpret-markup layout props (markup #:musicglyph (assoc-get 1 standard-alteration-glyph-name-alist ""))))
2625
2626 (define-markup-command (sesquisharp layout props)
2627   ()
2628   #:category music
2629   "Draw a 3/2 sharp symbol.
2630
2631 @lilypond[verbatim,quote]
2632 \\markup {
2633   \\sesquisharp
2634 }
2635 @end lilypond"
2636   (interpret-markup layout props (markup #:musicglyph (assoc-get 3/4 standard-alteration-glyph-name-alist ""))))
2637
2638 (define-markup-command (sharp layout props)
2639   ()
2640   #:category music
2641   "Draw a sharp symbol.
2642
2643 @lilypond[verbatim,quote]
2644 \\markup {
2645   \\sharp
2646 }
2647 @end lilypond"
2648   (interpret-markup layout props (markup #:musicglyph (assoc-get 1/2 standard-alteration-glyph-name-alist ""))))
2649
2650 (define-markup-command (semisharp layout props)
2651   ()
2652   #:category music
2653   "Draw a semisharp symbol.
2654
2655 @lilypond[verbatim,quote]
2656 \\markup {
2657   \\semisharp
2658 }
2659 @end lilypond"
2660   (interpret-markup layout props (markup #:musicglyph (assoc-get 1/4 standard-alteration-glyph-name-alist ""))))
2661
2662 (define-markup-command (natural layout props)
2663   ()
2664   #:category music
2665   "Draw a natural symbol.
2666
2667 @lilypond[verbatim,quote]
2668 \\markup {
2669   \\natural
2670 }
2671 @end lilypond"
2672   (interpret-markup layout props (markup #:musicglyph (assoc-get 0 standard-alteration-glyph-name-alist ""))))
2673
2674 (define-markup-command (semiflat layout props)
2675   ()
2676   #:category music
2677   "Draw a semiflat symbol.
2678
2679 @lilypond[verbatim,quote]
2680 \\markup {
2681   \\semiflat
2682 }
2683 @end lilypond"
2684   (interpret-markup layout props (markup #:musicglyph (assoc-get -1/4 standard-alteration-glyph-name-alist ""))))
2685
2686 (define-markup-command (flat layout props)
2687   ()
2688   #:category music
2689   "Draw a flat symbol.
2690
2691 @lilypond[verbatim,quote]
2692 \\markup {
2693   \\flat
2694 }
2695 @end lilypond"
2696   (interpret-markup layout props (markup #:musicglyph (assoc-get -1/2 standard-alteration-glyph-name-alist ""))))
2697
2698 (define-markup-command (sesquiflat layout props)
2699   ()
2700   #:category music
2701   "Draw a 3/2 flat symbol.
2702
2703 @lilypond[verbatim,quote]
2704 \\markup {
2705   \\sesquiflat
2706 }
2707 @end lilypond"
2708   (interpret-markup layout props (markup #:musicglyph (assoc-get -3/4 standard-alteration-glyph-name-alist ""))))
2709
2710 (define-markup-command (doubleflat layout props)
2711   ()
2712   #:category music
2713   "Draw a double flat symbol.
2714
2715 @lilypond[verbatim,quote]
2716 \\markup {
2717   \\doubleflat
2718 }
2719 @end lilypond"
2720   (interpret-markup layout props (markup #:musicglyph (assoc-get -1 standard-alteration-glyph-name-alist ""))))
2721
2722 (define-markup-command (with-color layout props color arg)
2723   (color? markup?)
2724   #:category other
2725   "
2726 @cindex coloring text
2727
2728 Draw @var{arg} in color specified by @var{color}.
2729
2730 @lilypond[verbatim,quote]
2731 \\markup {
2732   \\with-color #red
2733   red
2734   \\hspace #2
2735   \\with-color #green
2736   green
2737   \\hspace #2
2738   \\with-color #blue
2739   blue
2740 }
2741 @end lilypond"
2742   (let ((stil (interpret-markup layout props arg)))
2743     (ly:make-stencil (list 'color color (ly:stencil-expr stil))
2744                      (ly:stencil-extent stil X)
2745                      (ly:stencil-extent stil Y))))
2746
2747 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2748 ;; glyphs
2749 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2750
2751 (define-markup-command (arrow-head layout props axis dir filled)
2752   (integer? ly:dir? boolean?)
2753   #:category graphic
2754   "Produce an arrow head in specified direction and axis.
2755 Use the filled head if @var{filled} is specified.
2756 @lilypond[verbatim,quote]
2757 \\markup {
2758   \\fontsize #5 {
2759     \\general-align #Y #DOWN {
2760       \\arrow-head #Y #UP ##t
2761       \\arrow-head #Y #DOWN ##f
2762       \\hspace #2
2763       \\arrow-head #X #RIGHT ##f
2764       \\arrow-head #X #LEFT ##f
2765     }
2766   }
2767 }
2768 @end lilypond"
2769   (let*
2770       ((name (format #f "arrowheads.~a.~a~a"
2771                      (if filled
2772                          "close"
2773                          "open")
2774                      axis
2775                      dir)))
2776     (ly:font-get-glyph
2777      (ly:paper-get-font layout (cons '((font-encoding . fetaMusic))
2778                                      props))
2779      name)))
2780
2781 (define-markup-command (lookup layout props glyph-name)
2782   (string?)
2783   #:category other
2784   "Lookup a glyph by name.
2785
2786 @lilypond[verbatim,quote]
2787 \\markup {
2788   \\override #'(font-encoding . fetaBraces) {
2789     \\lookup #\"brace200\"
2790     \\hspace #2
2791     \\rotate #180
2792     \\lookup #\"brace180\"
2793   }
2794 }
2795 @end lilypond"
2796   (ly:font-get-glyph (ly:paper-get-font layout props)
2797                      glyph-name))
2798
2799 (define-markup-command (char layout props num)
2800   (integer?)
2801   #:category other
2802   "Produce a single character.  Characters encoded in hexadecimal
2803 format require the prefix @code{#x}.
2804
2805 @lilypond[verbatim,quote]
2806 \\markup {
2807   \\char #65 \\char ##x00a9
2808 }
2809 @end lilypond"
2810   (ly:text-interface::interpret-markup layout props (ly:wide-char->utf-8 num)))
2811
2812 (define number->mark-letter-vector (make-vector 25 #\A))
2813
2814 (do ((i 0 (1+ i))
2815      (j 0 (1+ j)))
2816     ((>= i 26))
2817   (if (= i (- (char->integer #\I) (char->integer #\A)))
2818       (set! i (1+ i)))
2819   (vector-set! number->mark-letter-vector j
2820                (integer->char (+ i (char->integer #\A)))))
2821
2822 (define number->mark-alphabet-vector (list->vector
2823   (map (lambda (i) (integer->char (+ i (char->integer #\A)))) (iota 26))))
2824
2825 (define (number->markletter-string vec n)
2826   "Double letters for big marks."
2827   (let* ((lst (vector-length vec)))
2828
2829     (if (>= n lst)
2830         (string-append (number->markletter-string vec (1- (quotient n lst)))
2831                        (number->markletter-string vec (remainder n lst)))
2832         (make-string 1 (vector-ref vec n)))))
2833
2834 (define-markup-command (markletter layout props num)
2835   (integer?)
2836   #:category other
2837   "Make a markup letter for @var{num}.  The letters start with A to@tie{}Z
2838 (skipping letter@tie{}I), and continue with double letters.
2839
2840 @lilypond[verbatim,quote]
2841 \\markup {
2842   \\markletter #8
2843   \\hspace #2
2844   \\markletter #26
2845 }
2846 @end lilypond"
2847   (ly:text-interface::interpret-markup layout props
2848     (number->markletter-string number->mark-letter-vector num)))
2849
2850 (define-markup-command (markalphabet layout props num)
2851   (integer?)
2852   #:category other
2853    "Make a markup letter for @var{num}.  The letters start with A to@tie{}Z
2854 and continue with double letters.
2855
2856 @lilypond[verbatim,quote]
2857 \\markup {
2858   \\markalphabet #8
2859   \\hspace #2
2860   \\markalphabet #26
2861 }
2862 @end lilypond"
2863    (ly:text-interface::interpret-markup layout props
2864      (number->markletter-string number->mark-alphabet-vector num)))
2865
2866 (define-public (horizontal-slash-interval num forward number-interval mag)
2867   (if forward
2868     (cond ;((= num 6) (interval-widen number-interval (* mag 0.5)))
2869           ;((= num 5) (interval-widen number-interval (* mag 0.5)))
2870           (else (interval-widen number-interval (* mag 0.25))))
2871     (cond ((= num 6) (interval-widen number-interval (* mag 0.5)))
2872           ;((= num 5) (interval-widen number-interval (* mag 0.5)))
2873           (else (interval-widen number-interval (* mag 0.25))))
2874   ))
2875
2876 (define-public (adjust-slash-stencil num forward stencil mag)
2877   (if forward
2878     (cond ((= num 2)
2879               (ly:stencil-translate stencil (cons (* mag -0.00) (* mag 0.2))))
2880           ((= num 3)
2881               (ly:stencil-translate stencil (cons (* mag -0.00) (* mag 0.2))))
2882           ;((= num 5)
2883               ;(ly:stencil-translate stencil (cons (* mag -0.00) (* mag -0.07))))
2884           ;((= num 7)
2885           ;    (ly:stencil-translate stencil (cons (* mag -0.00) (* mag -0.15))))
2886           (else stencil))
2887     (cond ((= num 6)
2888               (ly:stencil-translate stencil (cons (* mag -0.00) (* mag 0.15))))
2889           ;((= num 8)
2890           ;    (ly:stencil-translate stencil (cons (* mag -0.00) (* mag -0.15))))
2891           (else stencil))
2892   )
2893 )
2894
2895 (define (slashed-digit-internal layout props num forward font-size thickness)
2896   (let* ((mag (magstep font-size))
2897          (thickness (* mag
2898                        (ly:output-def-lookup layout 'line-thickness)
2899                        thickness))
2900          ; backward slashes might use slope and point in the other direction!
2901          (dy (* mag (if forward 0.4 -0.4)))
2902          (number-stencil (interpret-markup layout
2903                                            (prepend-alist-chain 'font-encoding 'fetaText props)
2904                                            (number->string num)))
2905          (num-x (horizontal-slash-interval num forward (ly:stencil-extent number-stencil X) mag))
2906          (center (interval-center (ly:stencil-extent number-stencil Y)))
2907          ; Use the real extents of the slash, not the whole number, because we
2908          ; might translate the slash later on!
2909          (num-y (interval-widen (cons center center) (abs dy)))
2910          (is-sane (and (interval-sane? num-x) (interval-sane? num-y)))
2911          (slash-stencil (if is-sane
2912                             (make-line-stencil thickness
2913                                          (car num-x) (- (interval-center num-y) dy)
2914                                          (cdr num-x) (+ (interval-center num-y) dy))
2915                             #f)))
2916     (if (ly:stencil? slash-stencil)
2917       (begin
2918         ; for some numbers we need to shift the slash/backslash up or down to make
2919         ; the slashed digit look better
2920         (set! slash-stencil (adjust-slash-stencil num forward slash-stencil mag))
2921         (set! number-stencil
2922           (ly:stencil-add number-stencil slash-stencil)))
2923       (ly:warning "Unable to create slashed digit ~a" num))
2924     number-stencil))
2925
2926
2927 (define-markup-command (slashed-digit layout props num)
2928   (integer?)
2929   #:category other
2930   #:properties ((font-size 0)
2931                 (thickness 1.6))
2932   "
2933 @cindex slashed digits
2934
2935 A feta number, with slash.  This is for use in the context of
2936 figured bass notation.
2937 @lilypond[verbatim,quote]
2938 \\markup {
2939   \\slashed-digit #5
2940   \\hspace #2
2941   \\override #'(thickness . 3)
2942   \\slashed-digit #7
2943 }
2944 @end lilypond"
2945   (slashed-digit-internal layout props num #t font-size thickness))
2946
2947 (define-markup-command (backslashed-digit layout props num)
2948   (integer?)
2949   #:category other
2950   #:properties ((font-size 0)
2951                 (thickness 1.6))
2952   "
2953 @cindex backslashed digits
2954
2955 A feta number, with backslash.  This is for use in the context of
2956 figured bass notation.
2957 @lilypond[verbatim,quote]
2958 \\markup {
2959   \\backslashed-digit #5
2960   \\hspace #2
2961   \\override #'(thickness . 3)
2962   \\backslashed-digit #7
2963 }
2964 @end lilypond"
2965   (slashed-digit-internal layout props num #f font-size thickness))
2966
2967 ;; eyeglasses
2968 (define eyeglassespath
2969   '((moveto 0.42 0.77)
2970     (rcurveto 0 0.304 -0.246 0.55 -0.55 0.55)
2971     (rcurveto -0.304 0 -0.55 -0.246 -0.55 -0.55)
2972     (rcurveto 0 -0.304 0.246 -0.55 0.55 -0.55)
2973     (rcurveto 0.304 0 0.55 0.246 0.55 0.55)
2974     (closepath)
2975     (moveto 2.07 0.77)
2976     (rcurveto 0 0.304 -0.246 0.55 -0.55 0.55)
2977     (rcurveto -0.304 0 -0.55 -0.246 -0.55 -0.55)
2978     (rcurveto 0 -0.304 0.246 -0.55 0.55 -0.55)
2979     (rcurveto 0.304 0 0.55 0.246 0.55 0.55)
2980     (closepath)
2981     (moveto 1.025 0.935)
2982     (rcurveto 0 0.182 -0.148 0.33 -0.33 0.33)
2983     (rcurveto -0.182 0 -0.33 -0.148 -0.33 -0.33)
2984     (moveto -0.68 0.77)
2985     (rlineto 0.66 1.43)
2986     (rcurveto 0.132 0.286 0.55 0.44 0.385 -0.33)
2987     (moveto 2.07 0.77)
2988     (rlineto 0.66 1.43)
2989     (rcurveto 0.132 0.286 0.55 0.44 0.385 -0.33)))
2990
2991 (define-markup-command (eyeglasses layout props)
2992   ()
2993   #:category other
2994   "Prints out eyeglasses, indicating strongly to look at the conductor.
2995 @lilypond[verbatim,quote]
2996 \\markup { \\eyeglasses }
2997 @end lilypond"
2998   (interpret-markup layout props
2999     (make-override-markup '(line-cap-style . butt)
3000       (make-path-markup 0.15 eyeglassespath))))
3001
3002 (define-markup-command (left-brace layout props size)
3003   (number?)
3004   #:category other
3005   "
3006 A feta brace in point size @var{size}.
3007
3008 @lilypond[verbatim,quote]
3009 \\markup {
3010   \\left-brace #35
3011   \\hspace #2
3012   \\left-brace #45
3013 }
3014 @end lilypond"
3015   (let* ((font (ly:paper-get-font layout
3016                                   (cons '((font-encoding . fetaBraces)
3017                                           (font-name . #f))
3018                                         props)))
3019          (glyph-count (1- (ly:otf-glyph-count font)))
3020          (scale (ly:output-def-lookup layout 'output-scale))
3021          (scaled-size (/ (ly:pt size) scale))
3022          (glyph (lambda (n)
3023                   (ly:font-get-glyph font (string-append "brace"
3024                                                          (number->string n)))))
3025          (get-y-from-brace (lambda (brace)
3026                              (interval-length
3027                               (ly:stencil-extent (glyph brace) Y))))
3028          (find-brace (binary-search 0 glyph-count get-y-from-brace scaled-size))
3029          (glyph-found (glyph find-brace)))
3030
3031     (if (or (null? (ly:stencil-expr glyph-found))
3032             (< scaled-size (interval-length (ly:stencil-extent (glyph 0) Y)))
3033             (> scaled-size (interval-length
3034                             (ly:stencil-extent (glyph glyph-count) Y))))
3035         (begin
3036           (ly:warning (_ "no brace found for point size ~S ") size)
3037           (ly:warning (_ "defaulting to ~S pt")
3038                       (/ (* scale (interval-length
3039                                    (ly:stencil-extent glyph-found Y)))
3040                          (ly:pt 1)))))
3041     glyph-found))
3042
3043 (define-markup-command (right-brace layout props size)
3044   (number?)
3045   #:category other
3046   "
3047 A feta brace in point size @var{size}, rotated 180 degrees.
3048
3049 @lilypond[verbatim,quote]
3050 \\markup {
3051   \\right-brace #45
3052   \\hspace #2
3053   \\right-brace #35
3054 }
3055 @end lilypond"
3056   (interpret-markup layout props (markup #:rotate 180 #:left-brace size)))
3057
3058 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3059 ;; the note command.
3060 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3061
3062 ;; TODO: better syntax.
3063
3064 (define-markup-command (note-by-number layout props log dot-count dir)
3065   (number? number? number?)
3066   #:category music
3067   #:properties ((font-size 0)
3068                 (style '()))
3069   "
3070 @cindex notes within text by log and dot-count
3071
3072 Construct a note symbol, with stem.  By using fractional values for
3073 @var{dir}, longer or shorter stems can be obtained.
3074
3075 @lilypond[verbatim,quote]
3076 \\markup {
3077   \\note-by-number #3 #0 #DOWN
3078   \\hspace #2
3079   \\note-by-number #1 #2 #0.8
3080 }
3081 @end lilypond"
3082   (define (get-glyph-name-candidates dir log style)
3083     (map (lambda (dir-name)
3084            (format #f "noteheads.~a~a" dir-name
3085                    (if (and (symbol? style)
3086                             (not (equal? 'default style)))
3087                        (select-head-glyph style (min log 2))
3088                        (min log 2))))
3089          (list (if (= dir UP) "u" "d")
3090                "s")))
3091
3092   (define (get-glyph-name font cands)
3093     (if (null? cands)
3094         ""
3095         (if (ly:stencil-empty? (ly:font-get-glyph font (car cands)))
3096             (get-glyph-name font (cdr cands))
3097             (car cands))))
3098
3099   (let* ((font (ly:paper-get-font layout (cons '((font-encoding . fetaMusic))
3100                                                props)))
3101          (size-factor (magstep font-size))
3102          (stem-length (* size-factor (max 3 (- log 1))))
3103          (head-glyph-name
3104           (let ((result (get-glyph-name font (get-glyph-name-candidates
3105                                               (sign dir) log style))))
3106             (if (string-null? result)
3107                 ;; If no glyph name can be found, select default heads.  Though
3108                 ;; this usually means an unsupported style has been chosen, it
3109                 ;; also prevents unrelated 'style settings from other grobs
3110                 ;; (e.g., TextSpanner and TimeSignature) leaking into markup.
3111                 (get-glyph-name font (get-glyph-name-candidates
3112                                       (sign dir) log 'default))
3113                 result)))
3114          (head-glyph (ly:font-get-glyph font head-glyph-name))
3115          (attach-indices (ly:note-head::stem-attachment font head-glyph-name))
3116          (stem-thickness (* size-factor 0.13))
3117          (stemy (* dir stem-length))
3118          (attach-off (cons (interval-index
3119                             (ly:stencil-extent head-glyph X)
3120                             (* (sign dir) (car attach-indices)))
3121                            (* (sign dir) ; fixme, this is inconsistent between X & Y.
3122                               (interval-index
3123                                (ly:stencil-extent head-glyph Y)
3124                                (cdr attach-indices)))))
3125          (stem-glyph (and (> log 0)
3126                           (ly:round-filled-box
3127                            (ordered-cons (car attach-off)
3128                                          (+ (car attach-off)
3129                                             (* (- (sign dir)) stem-thickness)))
3130                            (cons (min stemy (cdr attach-off))
3131                                  (max stemy (cdr attach-off)))
3132                            (/ stem-thickness 3))))
3133
3134          (dot (ly:font-get-glyph font "dots.dot"))
3135          (dotwid (interval-length (ly:stencil-extent dot X)))
3136          (dots (and (> dot-count 0)
3137                     (apply ly:stencil-add
3138                            (map (lambda (x)
3139                                   (ly:stencil-translate-axis
3140                                    dot (* 2 x dotwid) X))
3141                                 (iota dot-count)))))
3142          (flaggl (and (> log 2)
3143                       (ly:stencil-translate
3144                        (ly:font-get-glyph font
3145                                           (string-append "flags."
3146                                                          (if (> dir 0) "u" "d")
3147                                                          (number->string log)))
3148                        (cons (+ (car attach-off) (if (< dir 0)
3149                                                      stem-thickness 0))
3150                              stemy)))))
3151
3152     ;; If there is a flag on an upstem and the stem is short, move the dots
3153     ;; to avoid the flag.  16th notes get a special case because their flags
3154     ;; hang lower than any other flags.
3155     (if (and dots (> dir 0) (> log 2)
3156              (or (< dir 1.15) (and (= log 4) (< dir 1.3))))
3157         (set! dots (ly:stencil-translate-axis dots 0.5 X)))
3158     (if flaggl
3159         (set! stem-glyph (ly:stencil-add flaggl stem-glyph)))
3160     (if (ly:stencil? stem-glyph)
3161         (set! stem-glyph (ly:stencil-add stem-glyph head-glyph))
3162         (set! stem-glyph head-glyph))
3163     (if (ly:stencil? dots)
3164         (set! stem-glyph
3165               (ly:stencil-add
3166                (ly:stencil-translate-axis
3167                 dots
3168                 (+ (cdr (ly:stencil-extent head-glyph X)) dotwid)
3169                 X)
3170                stem-glyph)))
3171     stem-glyph))
3172
3173 (define-public log2
3174   (let ((divisor (log 2)))
3175     (lambda (z) (inexact->exact (/ (log z) divisor)))))
3176
3177 (define (parse-simple-duration duration-string)
3178   "Parse the `duration-string', e.g. ''4..'' or ''breve.'',
3179 and return a (log dots) list."
3180   (let ((match (regexp-exec (make-regexp "(breve|longa|maxima|[0-9]+)(\\.*)")
3181                             duration-string)))
3182     (if (and match (string=? duration-string (match:substring match 0)))
3183         (let ((len (match:substring match 1))
3184               (dots (match:substring match 2)))
3185           (list (cond ((string=? len "breve") -1)
3186                       ((string=? len "longa") -2)
3187                       ((string=? len "maxima") -3)
3188                       (else (log2 (string->number len))))
3189                 (if dots (string-length dots) 0)))
3190         (ly:error (_ "not a valid duration string: ~a") duration-string))))
3191
3192 (define-markup-command (note layout props duration dir)
3193   (string? number?)
3194   #:category music
3195   #:properties (note-by-number-markup)
3196   "
3197 @cindex notes within text by string
3198
3199 This produces a note with a stem pointing in @var{dir} direction, with
3200 the @var{duration} for the note head type and augmentation dots.  For
3201 example, @code{\\note #\"4.\" #-0.75} creates a dotted quarter note, with
3202 a shortened down stem.
3203
3204 @lilypond[verbatim,quote]
3205 \\markup {
3206   \\override #'(style . cross) {
3207     \\note #\"4..\" #UP
3208   }
3209   \\hspace #2
3210   \\note #\"breve\" #0
3211 }
3212 @end lilypond"
3213   (let ((parsed (parse-simple-duration duration)))
3214     (note-by-number-markup layout props (car parsed) (cadr parsed) dir)))
3215
3216 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3217 ;; translating.
3218 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3219
3220 (define-markup-command (lower layout props amount arg)
3221   (number? markup?)
3222   #:category align
3223   "
3224 @cindex lowering text
3225
3226 Lower @var{arg} by the distance @var{amount}.
3227 A negative @var{amount} indicates raising; see also @code{\\raise}.
3228
3229 @lilypond[verbatim,quote]
3230 \\markup {
3231   one
3232   \\lower #3
3233   two
3234   three
3235 }
3236 @end lilypond"
3237   (ly:stencil-translate-axis (interpret-markup layout props arg)
3238                              (- amount) Y))
3239
3240 (define-markup-command (translate-scaled layout props offset arg)
3241   (number-pair? markup?)
3242   #:category align
3243   #:properties ((font-size 0))
3244   "
3245 @cindex translating text
3246 @cindex scaling text
3247
3248 Translate @var{arg} by @var{offset}, scaling the offset by the
3249 @code{font-size}.
3250
3251 @lilypond[verbatim,quote]
3252 \\markup {
3253   \\fontsize #5 {
3254     * \\translate #'(2 . 3) translate
3255     \\hspace #2
3256     * \\translate-scaled #'(2 . 3) translate-scaled
3257   }
3258 }
3259 @end lilypond"
3260   (let* ((factor (magstep font-size))
3261          (scaled (cons (* factor (car offset))
3262                        (* factor (cdr offset)))))
3263     (ly:stencil-translate (interpret-markup layout props arg)
3264                           scaled)))
3265
3266 (define-markup-command (raise layout props amount arg)
3267   (number? markup?)
3268   #:category align
3269   "
3270 @cindex raising text
3271
3272 Raise @var{arg} by the distance @var{amount}.
3273 A negative @var{amount} indicates lowering, see also @code{\\lower}.
3274
3275 The argument to @code{\\raise} is the vertical displacement amount,
3276 measured in (global) staff spaces.  @code{\\raise} and @code{\\super}
3277 raise objects in relation to their surrounding markups.
3278
3279 If the text object itself is positioned above or below the staff, then
3280 @code{\\raise} cannot be used to move it, since the mechanism that
3281 positions it next to the staff cancels any shift made with
3282 @code{\\raise}.  For vertical positioning, use the @code{padding}
3283 and/or @code{extra-offset} properties.
3284
3285 @lilypond[verbatim,quote]
3286 \\markup {
3287   C
3288   \\small
3289   \\bold
3290   \\raise #1.0
3291   9/7+
3292 }
3293 @end lilypond"
3294   (ly:stencil-translate-axis (interpret-markup layout props arg) amount Y))
3295
3296 (define-markup-command (fraction layout props arg1 arg2)
3297   (markup? markup?)
3298   #:category other
3299   #:properties ((font-size 0))
3300   "
3301 @cindex creating text fractions
3302
3303 Make a fraction of two markups.
3304 @lilypond[verbatim,quote]
3305 \\markup {
3306   Ï€ â‰ˆ
3307   \\fraction 355 113
3308 }
3309 @end lilypond"
3310   (let* ((m1 (interpret-markup layout props arg1))
3311          (m2 (interpret-markup layout props arg2))
3312          (factor (magstep font-size))
3313          (boxdimen (cons (* factor -0.05) (* factor 0.05)))
3314          (padding (* factor 0.2))
3315          (baseline (* factor 0.6))
3316          (offset (* factor 0.75)))
3317     (set! m1 (ly:stencil-aligned-to m1 X CENTER))
3318     (set! m2 (ly:stencil-aligned-to m2 X CENTER))
3319     (let* ((x1 (ly:stencil-extent m1 X))
3320            (x2 (ly:stencil-extent m2 X))
3321            (line (ly:round-filled-box (interval-union x1 x2) boxdimen 0.0))
3322            ;; should stack mols separately, to maintain LINE on baseline
3323            (stack (stack-lines DOWN padding baseline (list m1 line m2))))
3324       (set! stack
3325             (ly:stencil-aligned-to stack Y CENTER))
3326       (set! stack
3327             (ly:stencil-aligned-to stack X LEFT))
3328       ;; should have EX dimension
3329       ;; empirical anyway
3330       (ly:stencil-translate-axis stack offset Y))))
3331
3332 (define-markup-command (normal-size-super layout props arg)
3333   (markup?)
3334   #:category font
3335   #:properties ((baseline-skip))
3336   "
3337 @cindex setting superscript in standard font size
3338
3339 Set @var{arg} in superscript with a normal font size.
3340
3341 @lilypond[verbatim,quote]
3342 \\markup {
3343   default
3344   \\normal-size-super {
3345     superscript in standard size
3346   }
3347 }
3348 @end lilypond"
3349   (ly:stencil-translate-axis
3350    (interpret-markup layout props arg)
3351    (* 0.5 baseline-skip) Y))
3352
3353 (define-markup-command (super layout props arg)
3354   (markup?)
3355   #:category font
3356   #:properties ((font-size 0)
3357                 (baseline-skip))
3358   "
3359 @cindex superscript text
3360
3361 Set @var{arg} in superscript.
3362
3363 @lilypond[verbatim,quote]
3364 \\markup {
3365   E =
3366   \\concat {
3367     mc
3368     \\super
3369     2
3370   }
3371 }
3372 @end lilypond"
3373   (ly:stencil-translate-axis
3374    (interpret-markup
3375     layout
3376     (cons `((font-size . ,(- font-size 3))) props)
3377     arg)
3378    (* 0.5 baseline-skip)
3379    Y))
3380
3381 (define-markup-command (translate layout props offset arg)
3382   (number-pair? markup?)
3383   #:category align
3384   "
3385 @cindex translating text
3386
3387 Translate @var{arg} relative to its surroundings.  @var{offset}
3388 is a pair of numbers representing the displacement in the X and Y axis.
3389
3390 @lilypond[verbatim,quote]
3391 \\markup {
3392   *
3393   \\translate #'(2 . 3)
3394   \\line { translated two spaces right, three up }
3395 }
3396 @end lilypond"
3397   (ly:stencil-translate (interpret-markup layout props arg)
3398                         offset))
3399
3400 (define-markup-command (sub layout props arg)
3401   (markup?)
3402   #:category font
3403   #:properties ((font-size 0)
3404                 (baseline-skip))
3405   "
3406 @cindex subscript text
3407
3408 Set @var{arg} in subscript.
3409
3410 @lilypond[verbatim,quote]
3411 \\markup {
3412   \\concat {
3413     H
3414     \\sub {
3415       2
3416     }
3417     O
3418   }
3419 }
3420 @end lilypond"
3421   (ly:stencil-translate-axis
3422    (interpret-markup
3423     layout
3424     (cons `((font-size . ,(- font-size 3))) props)
3425     arg)
3426    (* -0.5 baseline-skip)
3427    Y))
3428
3429 (define-markup-command (normal-size-sub layout props arg)
3430   (markup?)
3431   #:category font
3432   #:properties ((baseline-skip))
3433   "
3434 @cindex setting subscript in standard font size
3435
3436 Set @var{arg} in subscript with a normal font size.
3437
3438 @lilypond[verbatim,quote]
3439 \\markup {
3440   default
3441   \\normal-size-sub {
3442     subscript in standard size
3443   }
3444 }
3445 @end lilypond"
3446   (ly:stencil-translate-axis
3447    (interpret-markup layout props arg)
3448    (* -0.5 baseline-skip)
3449    Y))
3450
3451 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3452 ;; brackets.
3453 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3454
3455 (define-markup-command (hbracket layout props arg)
3456   (markup?)
3457   #:category graphic
3458   "
3459 @cindex placing horizontal brackets around text
3460
3461 Draw horizontal brackets around @var{arg}.
3462
3463 @lilypond[verbatim,quote]
3464 \\markup {
3465   \\hbracket {
3466     \\line {
3467       one two three
3468     }
3469   }
3470 }
3471 @end lilypond"
3472   (let ((th 0.1) ;; todo: take from GROB.
3473         (m (interpret-markup layout props arg)))
3474     (bracketify-stencil m X th (* 2.5 th) th)))
3475
3476 (define-markup-command (bracket layout props arg)
3477   (markup?)
3478   #:category graphic
3479   "
3480 @cindex placing vertical brackets around text
3481
3482 Draw vertical brackets around @var{arg}.
3483
3484 @lilypond[verbatim,quote]
3485 \\markup {
3486   \\bracket {
3487     \\note #\"2.\" #UP
3488   }
3489 }
3490 @end lilypond"
3491   (let ((th 0.1) ;; todo: take from GROB.
3492         (m (interpret-markup layout props arg)))
3493     (bracketify-stencil m Y th (* 2.5 th) th)))
3494
3495 (define-markup-command (parenthesize layout props arg)
3496   (markup?)
3497   #:category graphic
3498   #:properties ((angularity 0)
3499                 (padding)
3500                 (size 1)
3501                 (thickness 1)
3502                 (width 0.25))
3503   "
3504 @cindex placing parentheses around text
3505
3506 Draw parentheses around @var{arg}.  This is useful for parenthesizing
3507 a column containing several lines of text.
3508
3509 @lilypond[verbatim,quote]
3510 \\markup {
3511   \\line {
3512     \\parenthesize {
3513       \\column {
3514         foo
3515         bar
3516       }
3517     }
3518     \\override #'(angularity . 2) {
3519       \\parenthesize {
3520         \\column {
3521           bah
3522           baz
3523         }
3524       }
3525     }
3526   }
3527 }
3528 @end lilypond"
3529   (let* ((markup (interpret-markup layout props arg))
3530          (scaled-width (* size width))
3531          (scaled-thickness
3532           (* (chain-assoc-get 'line-thickness props 0.1)
3533              thickness))
3534          (half-thickness
3535           (min (* size 0.5 scaled-thickness)
3536                (* (/ 4 3.0) scaled-width)))
3537          (padding (chain-assoc-get 'padding props half-thickness)))
3538     (parenthesize-stencil
3539      markup half-thickness scaled-width angularity padding)))
3540
3541
3542 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3543 ;; Delayed markup evaluation
3544 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3545
3546 (define-markup-command (page-ref layout props label gauge default)
3547   (symbol? markup? markup?)
3548   #:category other
3549   "
3550 @cindex referencing page numbers in text
3551
3552 Reference to a page number.  @var{label} is the label set on the referenced
3553 page (using the @code{\\label} command), @var{gauge} a markup used to estimate
3554 the maximum width of the page number, and @var{default} the value to display
3555 when @var{label} is not found."
3556   (let* ((gauge-stencil (interpret-markup layout props gauge))
3557          (x-ext (ly:stencil-extent gauge-stencil X))
3558          (y-ext (ly:stencil-extent gauge-stencil Y)))
3559     (ly:make-stencil
3560      `(delay-stencil-evaluation
3561        ,(delay (ly:stencil-expr
3562                 (let* ((table (ly:output-def-lookup layout 'label-page-table))
3563                        (page-number (if (list? table)
3564                                         (assoc-get label table)
3565                                         #f))
3566                        (page-markup (if page-number (format #f "~a" page-number) default))
3567                        (page-stencil (interpret-markup layout props page-markup))
3568                        (gap (- (interval-length x-ext)
3569                                (interval-length (ly:stencil-extent page-stencil X)))))
3570                   (interpret-markup layout props
3571                                     (markup #:concat (#:hspace gap page-markup)))))))
3572      x-ext
3573      y-ext)))
3574
3575 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3576 ;; scaling
3577 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3578
3579 (define-markup-command (scale layout props factor-pair arg)
3580   (number-pair? markup?)
3581   #:category graphic
3582   "
3583 @cindex scaling markup
3584 @cindex mirroring markup
3585
3586 Scale @var{arg}.  @var{factor-pair} is a pair of numbers
3587 representing the scaling-factor in the X and Y axes.
3588 Negative values may be used to produce mirror images.
3589
3590 @lilypond[verbatim,quote]
3591 \\markup {
3592   \\line {
3593     \\scale #'(2 . 1)
3594     stretched
3595     \\scale #'(1 . -1)
3596     mirrored
3597   }
3598 }
3599 @end lilypond"
3600   (let ((stil (interpret-markup layout props arg))
3601         (sx (car factor-pair))
3602         (sy (cdr factor-pair)))
3603     (ly:stencil-scale stil sx sy)))
3604
3605 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3606 ;; Repeating
3607 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3608
3609 (define-markup-command (pattern layout props count axis space pattern)
3610   (integer? integer? number? markup?)
3611   #:category other
3612   "
3613 Prints @var{count} times a @var{pattern} markup.
3614 Patterns are spaced apart by @var{space}.
3615 Patterns are distributed on @var{axis}.
3616
3617 @lilypond[verbatim, quote]
3618 \\markup \\column {
3619   \"Horizontally repeated :\"
3620   \\pattern #7 #X #2 \\flat
3621   \\null
3622   \"Vertically repeated :\"
3623   \\pattern #3 #Y #0.5 \\flat
3624 }
3625 @end lilypond"
3626   (let ((pattern-width (interval-length
3627                          (ly:stencil-extent (interpret-markup layout props pattern) X)))
3628         (new-props (prepend-alist-chain 'word-space 0 (prepend-alist-chain 'baseline-skip 0 props))))
3629     (let loop ((i (1- count)) (patterns (markup)))
3630       (if (zero? i)
3631           (interpret-markup
3632             layout
3633             new-props
3634             (if (= axis X)
3635                 (markup patterns pattern)
3636                 (markup #:column (patterns pattern))))
3637           (loop (1- i)
3638             (if (= axis X)
3639                 (markup patterns pattern #:hspace space)
3640                 (markup #:column (patterns pattern #:vspace space))))))))
3641
3642 (define-markup-command (fill-with-pattern layout props space dir pattern left right)
3643   (number? ly:dir? markup? markup? markup?)
3644   #:category align
3645   #:properties ((word-space)
3646                 (line-width))
3647   "
3648 Put @var{left} and @var{right} in a horizontal line of width @code{line-width}
3649 with a line of markups @var{pattern} in between.
3650 Patterns are spaced apart by @var{space}.
3651 Patterns are aligned to the @var{dir} markup.
3652
3653 @lilypond[verbatim, quote]
3654 \\markup \\column {
3655   \"right-aligned :\"
3656   \\fill-with-pattern #1 #RIGHT . first right
3657   \\fill-with-pattern #1 #RIGHT . second right
3658   \\null
3659   \"center-aligned :\"
3660   \\fill-with-pattern #1.5 #CENTER - left right
3661   \\null
3662   \"left-aligned :\"
3663   \\override #'(line-width . 50)
3664   \\fill-with-pattern #2 #LEFT : left first
3665   \\override #'(line-width . 50)
3666   \\fill-with-pattern #2 #LEFT : left second
3667 }
3668 @end lilypond"
3669   (let* ((pattern-x-extent (ly:stencil-extent (interpret-markup layout props pattern) X))
3670          (pattern-width (interval-length pattern-x-extent))
3671          (left-width (interval-length (ly:stencil-extent (interpret-markup layout props left) X)))
3672          (right-width (interval-length (ly:stencil-extent (interpret-markup layout props right) X)))
3673          (middle-width (max 0 (- line-width (+ (+ left-width right-width) (* word-space 2)))))
3674          (period (+ space pattern-width))
3675          (count (truncate (/ (- middle-width pattern-width) period)))
3676          (x-offset (+ (* (- (- middle-width (* count period)) pattern-width) (/ (1+ dir) 2)) (abs (car pattern-x-extent)))))
3677     (interpret-markup layout props
3678                       (markup left
3679                               #:with-dimensions (cons 0 middle-width) '(0 . 0)
3680                               #:translate (cons x-offset 0)
3681                               #:pattern (1+ count) X space pattern
3682                               right))))
3683
3684 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3685 ;; Markup list commands
3686 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3687
3688 (define-public (space-lines baseline stils)
3689   (let space-stil ((stils stils)
3690                    (result (list)))
3691     (if (null? stils)
3692         (reverse! result)
3693         (let* ((stil (car stils))
3694                (dy-top (max (- (/ baseline 1.5)
3695                                (interval-bound (ly:stencil-extent stil Y) UP))
3696                             0.0))
3697                (dy-bottom (max (+ (/ baseline 3.0)
3698                                   (interval-bound (ly:stencil-extent stil Y) DOWN))
3699                                0.0))
3700                (new-stil (ly:make-stencil
3701                           (ly:stencil-expr stil)
3702                           (ly:stencil-extent stil X)
3703                           (cons (- (interval-bound (ly:stencil-extent stil Y) DOWN)
3704                                    dy-bottom)
3705                                 (+ (interval-bound (ly:stencil-extent stil Y) UP)
3706                                    dy-top)))))
3707           (space-stil (cdr stils) (cons new-stil result))))))
3708
3709 (define-markup-list-command (justified-lines layout props args)
3710   (markup-list?)
3711   #:properties ((baseline-skip)
3712                 wordwrap-internal-markup-list)
3713   "
3714 @cindex justifying lines of text
3715
3716 Like @code{\\justify}, but return a list of lines instead of a single markup.
3717 Use @code{\\override-lines #'(line-width . @var{X})} to set the line width;
3718 @var{X}@tie{}is the number of staff spaces."
3719   (space-lines baseline-skip
3720                (interpret-markup-list layout props
3721                                       (make-wordwrap-internal-markup-list #t args))))
3722
3723 (define-markup-list-command (wordwrap-lines layout props args)
3724   (markup-list?)
3725   #:properties ((baseline-skip)
3726                 wordwrap-internal-markup-list)
3727   "Like @code{\\wordwrap}, but return a list of lines instead of a single markup.
3728 Use @code{\\override-lines #'(line-width . @var{X})} to set the line width,
3729 where @var{X} is the number of staff spaces."
3730   (space-lines baseline-skip
3731                (interpret-markup-list layout props
3732                                       (make-wordwrap-internal-markup-list #f args))))
3733
3734 (define-markup-list-command (column-lines layout props args)
3735   (markup-list?)
3736   #:properties ((baseline-skip))
3737   "Like @code{\\column}, but return a list of lines instead of a single markup.
3738 @code{baseline-skip} determines the space between each markup in @var{args}."
3739   (space-lines baseline-skip
3740                (interpret-markup-list layout props args)))
3741
3742 (define-markup-list-command (override-lines layout props new-prop args)
3743   (pair? markup-list?)
3744   "Like @code{\\override}, for markup lists."
3745   (interpret-markup-list layout (cons (list new-prop) props) args))