]>
git.cameronkatri.com Git - mandoc.git/blob - eqn_term.c
1 /* $Id: eqn_term.c,v 1.9 2017/02/12 14:19:01 schwarze Exp $ */
3 * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 #include <sys/types.h>
31 static const enum termfont fontmap
[EQNFONT__MAX
] = {
32 TERMFONT_NONE
, /* EQNFONT_NONE */
33 TERMFONT_NONE
, /* EQNFONT_ROMAN */
34 TERMFONT_BOLD
, /* EQNFONT_BOLD */
35 TERMFONT_BOLD
, /* EQNFONT_FAT */
36 TERMFONT_UNDER
/* EQNFONT_ITALIC */
39 static void eqn_box(struct termp
*, const struct eqn_box
*);
43 term_eqn(struct termp
*p
, const struct eqn
*ep
)
47 p
->flags
&= ~TERMP_NOSPACE
;
51 eqn_box(struct termp
*p
, const struct eqn_box
*bp
)
53 const struct eqn_box
*child
;
55 if (bp
->type
== EQN_LIST
||
56 (bp
->type
== EQN_PILE
&& (bp
->prev
|| bp
->next
)) ||
57 (bp
->parent
!= NULL
&& bp
->parent
->pos
== EQNPOS_SQRT
)) {
58 if (bp
->parent
->type
== EQN_SUBEXPR
&& bp
->prev
!= NULL
)
59 p
->flags
|= TERMP_NOSPACE
;
60 term_word(p
, bp
->left
!= NULL
? bp
->left
: "(");
61 p
->flags
|= TERMP_NOSPACE
;
63 if (bp
->font
!= EQNFONT_NONE
)
64 term_fontpush(p
, fontmap
[(int)bp
->font
]);
67 term_word(p
, bp
->text
);
69 if (bp
->pos
== EQNPOS_SQRT
) {
71 if (bp
->first
!= NULL
) {
72 p
->flags
|= TERMP_NOSPACE
;
73 eqn_box(p
, bp
->first
);
75 } else if (bp
->type
== EQN_SUBEXPR
) {
78 p
->flags
|= TERMP_NOSPACE
;
79 term_word(p
, bp
->pos
== EQNPOS_OVER
? "/" :
80 (bp
->pos
== EQNPOS_SUP
||
81 bp
->pos
== EQNPOS_TO
) ? "^" : "_");
82 p
->flags
|= TERMP_NOSPACE
;
86 if (bp
->pos
== EQNPOS_FROMTO
||
87 bp
->pos
== EQNPOS_SUBSUP
) {
88 p
->flags
|= TERMP_NOSPACE
;
90 p
->flags
|= TERMP_NOSPACE
;
98 if (bp
->type
== EQN_MATRIX
&&
99 child
!= NULL
&& child
->type
== EQN_LIST
)
100 child
= child
->first
;
101 while (child
!= NULL
) {
103 bp
->type
== EQN_PILE
&&
104 child
->type
== EQN_LIST
&&
106 child
->first
: child
);
111 if (bp
->font
!= EQNFONT_NONE
)
113 if (bp
->type
== EQN_LIST
||
114 (bp
->type
== EQN_PILE
&& (bp
->prev
|| bp
->next
)) ||
115 (bp
->parent
!= NULL
&& bp
->parent
->pos
== EQNPOS_SQRT
)) {
116 p
->flags
|= TERMP_NOSPACE
;
117 term_word(p
, bp
->right
!= NULL
? bp
->right
: ")");
118 if (bp
->parent
->type
== EQN_SUBEXPR
&& bp
->next
!= NULL
)
119 p
->flags
|= TERMP_NOSPACE
;
122 if (bp
->top
!= NULL
) {
123 p
->flags
|= TERMP_NOSPACE
;
124 term_word(p
, bp
->top
);
126 if (bp
->bottom
!= NULL
) {
127 p
->flags
|= TERMP_NOSPACE
;