Mercurial > emacs
annotate lisp/calc/calccomp.el @ 67926:6e1e5372c3f6
Ignore errors from font-lock-compile-keywords.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Fri, 30 Dec 2005 14:00:30 +0000 |
parents | 1db49616ce05 |
children | 6bf177f8065b 187d6a1f84f7 |
rev | line source |
---|---|
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1 ;;; calccomp.el --- composition functions for Calc |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
2 |
64325
1db49616ce05
Update copyright information.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
62165
diff
changeset
|
3 ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, |
1db49616ce05
Update copyright information.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
62165
diff
changeset
|
4 ;; 2005 Free Software Foundation, Inc. |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
5 |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
6 ;; Author: David Gillespie <daveg@synaptics.com> |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
7 ;; Maintainer: Jay Belanger <belanger@truman.edu> |
40785 | 8 |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is distributed in the hope that it will be useful, | |
12 ;; but WITHOUT ANY WARRANTY. No author or distributor | |
13 ;; accepts responsibility to anyone for the consequences of using it | |
14 ;; or for whether it serves any particular purpose or works at all, | |
15 ;; unless he says so in writing. Refer to the GNU Emacs General Public | |
16 ;; License for full details. | |
17 | |
18 ;; Everyone is granted permission to copy, modify and redistribute | |
19 ;; GNU Emacs, but only under the conditions described in the | |
20 ;; GNU Emacs General Public License. A copy of this license is | |
21 ;; supposed to have been given to you along with GNU Emacs so you | |
22 ;; can know your rights and responsibilities. It should be in a | |
23 ;; file named COPYING. Among other things, the copyright notice | |
24 ;; and this notice must be preserved on all copies. | |
25 | |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
26 ;;; Commentary: |
40785 | 27 |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
28 ;;; Code: |
40785 | 29 |
30 ;; This file is autoloaded from calc-ext.el. | |
58683
1752ff980918
Add a provide statement.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58465
diff
changeset
|
31 |
40785 | 32 (require 'calc-ext) |
33 (require 'calc-macs) | |
34 | |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
35 (defconst math-eqn-special-funcs |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
36 '( calcFunc-log |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
37 calcFunc-ln calcFunc-exp |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
38 calcFunc-sin calcFunc-cos calcFunc-tan |
60084
57a45818c9a3
(math-eqn-special-funcs): Add functions to list.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
59982
diff
changeset
|
39 calcFunc-sec calcFunc-csc calcFunc-cot |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
40 calcFunc-sinh calcFunc-cosh calcFunc-tanh |
60084
57a45818c9a3
(math-eqn-special-funcs): Add functions to list.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
59982
diff
changeset
|
41 calcFunc-sech calcFunc-csch calcFunc-coth |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
42 calcFunc-arcsin calcFunc-arccos calcFunc-arctan |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
43 calcFunc-arcsinh calcFunc-arccosh calcFunc-arctanh)) |
40785 | 44 |
45 ;;; A "composition" has one of the following forms: | |
46 ;;; | |
47 ;;; "string" A literal string | |
48 ;;; | |
49 ;;; (horiz C1 C2 ...) Horizontally abutted sub-compositions | |
50 ;;; | |
51 ;;; (set LEVEL OFF) Set left margin + offset for line-break level | |
52 ;;; (break LEVEL) A potential line-break point | |
53 ;;; | |
54 ;;; (vleft N C1 C2 ...) Vertically stacked, left-justified sub-comps | |
55 ;;; (vcent N C1 C2 ...) Vertically stacked, centered sub-comps | |
56 ;;; (vright N C1 C2 ...) Vertically stacked, right-justified sub-comps | |
57 ;;; N specifies baseline of the stack, 0=top line. | |
58 ;;; | |
59 ;;; (supscr C1 C2) Composition C1 with superscript C2 | |
60 ;;; (subscr C1 C2) Composition C1 with subscript C2 | |
61 ;;; (rule X) Horizontal line of X, full width of enclosing comp | |
62 ;;; | |
63 ;;; (tag X C) Composition C corresponds to sub-expression X | |
64 | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
65 ;; math-comp-just and math-comp-comma-spc are local to |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
66 ;; math-compose-expr, but are used by math-compose-matrix, which is |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
67 ;; called by math-compose-expr |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
68 (defvar math-comp-just) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
69 (defvar math-comp-comma-spc) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
70 |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
71 ;; math-comp-vector-prec is local to math-compose-expr, but is used by |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
72 ;; math-compose-matrix and math-compose-rows, which are called by |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
73 ;; math-compose-expr. |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
74 (defvar math-comp-vector-prec) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
75 |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
76 ;; math-comp-left-bracket, math-comp-right-bracket and math-comp-comma are |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
77 ;; local to math-compose-expr, but are used by math-compose-rows, which is |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
78 ;; called by math-compose-expr. |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
79 (defvar math-comp-left-bracket) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
80 (defvar math-comp-right-bracket) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
81 (defvar math-comp-comma) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
82 |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
83 |
40785 | 84 (defun math-compose-expr (a prec) |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
85 (let ((math-compose-level (1+ math-compose-level)) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
86 spfn) |
40785 | 87 (cond |
88 ((or (and (eq a math-comp-selected) a) | |
89 (and math-comp-tagged | |
90 (not (eq math-comp-tagged a)))) | |
91 (let ((math-comp-selected nil)) | |
92 (and math-comp-tagged (setq math-comp-tagged a)) | |
93 (list 'tag a (math-compose-expr a prec)))) | |
94 ((and (not (consp a)) (not (integerp a))) | |
95 (concat "'" (prin1-to-string a))) | |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
96 ((setq spfn (assq (car-safe a) math-expr-special-function-mapping)) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
97 (setq spfn (cdr spfn)) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
98 (funcall (car spfn) a spfn)) |
40785 | 99 ((math-scalarp a) |
100 (if (or (eq (car-safe a) 'frac) | |
101 (and (nth 1 calc-frac-format) (Math-integerp a))) | |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
102 (if (memq calc-language '(tex latex eqn math maple c fortran pascal)) |
40785 | 103 (let ((aa (math-adjust-fraction a)) |
104 (calc-frac-format nil)) | |
105 (math-compose-expr (list '/ | |
106 (if (memq calc-language '(c fortran)) | |
107 (math-float (nth 1 aa)) | |
108 (nth 1 aa)) | |
109 (nth 2 aa)) prec)) | |
110 (if (and (eq calc-language 'big) | |
111 (= (length (car calc-frac-format)) 1)) | |
112 (let* ((aa (math-adjust-fraction a)) | |
113 (calc-frac-format nil) | |
114 (math-radix-explicit-format nil) | |
115 (c (list 'horiz | |
116 (if (math-negp (nth 1 aa)) | |
117 "- " "") | |
118 (list 'vcent 1 | |
119 (math-format-number | |
120 (math-abs (nth 1 aa))) | |
121 '(rule ?-) | |
122 (math-format-number (nth 2 aa)))))) | |
123 (if (= calc-number-radix 10) | |
124 c | |
125 (list 'horiz "(" c | |
126 (list 'subscr ")" | |
127 (int-to-string calc-number-radix))))) | |
128 (math-format-number a))) | |
129 (if (not (eq calc-language 'big)) | |
130 (math-format-number a prec) | |
131 (if (memq (car-safe a) '(cplx polar)) | |
132 (if (math-zerop (nth 2 a)) | |
133 (math-compose-expr (nth 1 a) prec) | |
134 (list 'horiz "(" | |
135 (math-compose-expr (nth 1 a) 0) | |
136 (if (eq (car a) 'cplx) ", " "; ") | |
137 (math-compose-expr (nth 2 a) 0) ")")) | |
138 (if (or (= calc-number-radix 10) | |
139 (not (Math-realp a)) | |
140 (and calc-group-digits | |
141 (not (assoc calc-group-char '((",") (" ")))))) | |
142 (math-format-number a prec) | |
143 (let ((s (math-format-number a prec)) | |
144 (c nil)) | |
145 (while (string-match (if (> calc-number-radix 14) | |
146 "\\([0-9]+\\)#\\([0-9a-zA-Z., ]+\\)" | |
147 "\\([0-9]+\\)#\\([0-9a-dA-D., ]+\\)") | |
148 s) | |
149 (setq c (nconc c (list (substring s 0 (match-beginning 0)) | |
150 (list 'subscr | |
151 (math-match-substring s 2) | |
152 (math-match-substring s 1)))) | |
153 s (substring s (match-end 0)))) | |
154 (if (string-match | |
155 "\\*\\([0-9.]+\\)\\^\\(-?[0-9]+\\)\\()?\\)\\'" s) | |
156 (setq s (list 'horiz | |
157 (substring s 0 (match-beginning 0)) " " | |
158 (list 'supscr | |
159 (math-match-substring s 1) | |
160 (math-match-substring s 2)) | |
161 (math-match-substring s 3)))) | |
162 (if c (cons 'horiz (nconc c (list s))) s))))))) | |
163 ((and (get (car a) 'math-compose-forms) | |
164 (not (eq calc-language 'unform)) | |
165 (let ((comps (get (car a) 'math-compose-forms)) | |
166 temp temp2) | |
167 (or (and (setq temp (assq calc-language comps)) | |
168 (or (and (setq temp2 (assq (1- (length a)) (cdr temp))) | |
169 (setq temp (apply (cdr temp2) (cdr a))) | |
170 (math-compose-expr temp prec)) | |
171 (and (setq temp2 (assq nil (cdr temp))) | |
172 (funcall (cdr temp2) a)))) | |
173 (and (setq temp (assq nil comps)) | |
174 (or (and (setq temp2 (assq (1- (length a)) (cdr temp))) | |
175 (setq temp (apply (cdr temp2) (cdr a))) | |
176 (math-compose-expr temp prec)) | |
177 (and (setq temp2 (assq nil (cdr temp))) | |
178 (funcall (cdr temp2) a)))))))) | |
179 ((eq (car a) 'vec) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
180 (let* ((math-comp-left-bracket (if calc-vector-brackets |
40785 | 181 (substring calc-vector-brackets 0 1) "")) |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
182 (math-comp-right-bracket (if calc-vector-brackets |
40785 | 183 (substring calc-vector-brackets 1 2) "")) |
184 (inner-brackets (memq 'R calc-matrix-brackets)) | |
185 (outer-brackets (memq 'O calc-matrix-brackets)) | |
186 (row-commas (memq 'C calc-matrix-brackets)) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
187 (math-comp-comma-spc (or calc-vector-commas " ")) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
188 (math-comp-comma (or calc-vector-commas "")) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
189 (math-comp-vector-prec (if (or (and calc-vector-commas |
40785 | 190 (math-vector-no-parens a)) |
191 (memq 'P calc-matrix-brackets)) 0 1000)) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
192 (math-comp-just (cond ((eq calc-matrix-just 'right) 'vright) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
193 ((eq calc-matrix-just 'center) 'vcent) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
194 (t 'vleft))) |
40785 | 195 (break calc-break-vectors)) |
196 (if (and (memq calc-language '(nil big)) | |
197 (not calc-break-vectors) | |
198 (math-matrixp a) (not (math-matrixp (nth 1 a))) | |
199 (or calc-full-vectors | |
200 (and (< (length a) 7) (< (length (nth 1 a)) 7)) | |
201 (progn (setq break t) nil))) | |
202 (if (progn | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
203 (setq math-comp-vector-prec (if (or (and calc-vector-commas |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
204 (math-vector-no-parens |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
205 (nth 1 a))) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
206 (memq 'P calc-matrix-brackets)) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
207 0 1000)) |
40785 | 208 (= (length a) 2)) |
209 (list 'horiz | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
210 (concat math-comp-left-bracket math-comp-left-bracket " ") |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
211 (math-compose-vector (cdr (nth 1 a)) (concat math-comp-comma " ") |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
212 math-comp-vector-prec) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
213 (concat " " math-comp-right-bracket math-comp-right-bracket)) |
40785 | 214 (let* ((rows (1- (length a))) |
215 (cols (1- (length (nth 1 a)))) | |
216 (base (/ (1- rows) 2)) | |
217 (calc-language 'flat)) | |
218 (append '(horiz) | |
219 (list (append '(vleft) | |
220 (list base) | |
221 (list (concat (and outer-brackets | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
222 (concat math-comp-left-bracket |
40785 | 223 " ")) |
224 (and inner-brackets | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
225 (concat math-comp-left-bracket |
40785 | 226 " ")))) |
227 (make-list (1- rows) | |
228 (concat (and outer-brackets | |
229 " ") | |
230 (and inner-brackets | |
231 (concat | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
232 math-comp-left-bracket |
40785 | 233 " ")))))) |
234 (math-compose-matrix (cdr a) 1 cols base) | |
235 (list (append '(vleft) | |
236 (list base) | |
237 (make-list (1- rows) | |
238 (if inner-brackets | |
239 (concat " " | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
240 math-comp-right-bracket |
40785 | 241 (and row-commas |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
242 math-comp-comma)) |
40785 | 243 (if (and outer-brackets |
244 row-commas) | |
245 ";" ""))) | |
246 (list (concat | |
247 (and inner-brackets | |
248 (concat " " | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
249 math-comp-right-bracket)) |
40785 | 250 (and outer-brackets |
251 (concat | |
252 " " | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
253 math-comp-right-bracket))))))))) |
40785 | 254 (if (and calc-display-strings |
255 (cdr a) | |
256 (math-vector-is-string a)) | |
257 (math-vector-to-string a t) | |
258 (if (and break (cdr a) | |
259 (not (eq calc-language 'flat))) | |
260 (let* ((full (or calc-full-vectors (< (length a) 7))) | |
261 (rows (if full (1- (length a)) 5)) | |
262 (base (/ (1- rows) 2)) | |
263 (calc-break-vectors nil)) | |
264 (list 'horiz | |
265 (cons 'vleft (cons base | |
266 (math-compose-rows | |
267 (cdr a) | |
268 (if full rows 3) t))))) | |
269 (if (or calc-full-vectors (< (length a) 7)) | |
270 (if (and (eq calc-language 'tex) | |
271 (math-matrixp a)) | |
59965
ca9f30397adc
(math-compose-expr): Allow multiline matrices in TeX mode.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
59814
diff
changeset
|
272 (if (and (integerp calc-language-option) |
ca9f30397adc
(math-compose-expr): Allow multiline matrices in TeX mode.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
59814
diff
changeset
|
273 (or (= calc-language-option 0) |
ca9f30397adc
(math-compose-expr): Allow multiline matrices in TeX mode.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
59814
diff
changeset
|
274 (> calc-language-option 1) |
ca9f30397adc
(math-compose-expr): Allow multiline matrices in TeX mode.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
59814
diff
changeset
|
275 (< calc-language-option -1))) |
ca9f30397adc
(math-compose-expr): Allow multiline matrices in TeX mode.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
59814
diff
changeset
|
276 (append '(vleft 0 "\\matrix{") |
ca9f30397adc
(math-compose-expr): Allow multiline matrices in TeX mode.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
59814
diff
changeset
|
277 (math-compose-tex-matrix (cdr a)) |
ca9f30397adc
(math-compose-expr): Allow multiline matrices in TeX mode.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
59814
diff
changeset
|
278 '("}")) |
ca9f30397adc
(math-compose-expr): Allow multiline matrices in TeX mode.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
59814
diff
changeset
|
279 (append '(horiz "\\matrix{ ") |
ca9f30397adc
(math-compose-expr): Allow multiline matrices in TeX mode.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
59814
diff
changeset
|
280 (math-compose-tex-matrix (cdr a)) |
ca9f30397adc
(math-compose-expr): Allow multiline matrices in TeX mode.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
59814
diff
changeset
|
281 '(" }"))) |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
282 (if (and (eq calc-language 'latex) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
283 (math-matrixp a)) |
59965
ca9f30397adc
(math-compose-expr): Allow multiline matrices in TeX mode.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
59814
diff
changeset
|
284 (if (and (integerp calc-language-option) |
ca9f30397adc
(math-compose-expr): Allow multiline matrices in TeX mode.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
59814
diff
changeset
|
285 (or (= calc-language-option 0) |
ca9f30397adc
(math-compose-expr): Allow multiline matrices in TeX mode.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
59814
diff
changeset
|
286 (> calc-language-option 1) |
ca9f30397adc
(math-compose-expr): Allow multiline matrices in TeX mode.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
59814
diff
changeset
|
287 (< calc-language-option -1))) |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
288 (append '(vleft 0 "\\begin{pmatrix}") |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
289 (math-compose-tex-matrix (cdr a)) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
290 '("\\end{pmatrix}")) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
291 (append '(horiz "\\begin{pmatrix} ") |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
292 (math-compose-tex-matrix (cdr a)) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
293 '(" \\end{pmatrix}"))) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
294 (if (and (eq calc-language 'eqn) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
295 (math-matrixp a)) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
296 (append '(horiz "matrix { ") |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
297 (math-compose-eqn-matrix |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
298 (cdr (math-transpose a))) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
299 '("}")) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
300 (if (and (eq calc-language 'maple) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
301 (math-matrixp a)) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
302 (list 'horiz |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
303 "matrix(" |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
304 math-comp-left-bracket |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
305 (math-compose-vector (cdr a) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
306 (concat math-comp-comma " ") |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
307 math-comp-vector-prec) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
308 math-comp-right-bracket |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
309 ")") |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
310 (list 'horiz |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
311 math-comp-left-bracket |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
312 (math-compose-vector (cdr a) |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
313 (concat math-comp-comma " ") |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
314 math-comp-vector-prec) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
315 math-comp-right-bracket))))) |
40785 | 316 (list 'horiz |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
317 math-comp-left-bracket |
40785 | 318 (math-compose-vector (list (nth 1 a) (nth 2 a) (nth 3 a)) |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
319 (concat math-comp-comma " ") |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
320 math-comp-vector-prec) |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
321 math-comp-comma (if (memq calc-language '(tex latex)) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
322 " \\ldots" " ...") |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
323 math-comp-comma " " |
40785 | 324 (list 'break math-compose-level) |
325 (math-compose-expr (nth (1- (length a)) a) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
326 (if (equal math-comp-comma "") 1000 0)) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
327 math-comp-right-bracket))))))) |
40785 | 328 ((eq (car a) 'incomplete) |
329 (if (cdr (cdr a)) | |
330 (cond ((eq (nth 1 a) 'vec) | |
331 (list 'horiz "[" | |
332 (math-compose-vector (cdr (cdr a)) ", " 0) | |
333 " ...")) | |
334 ((eq (nth 1 a) 'cplx) | |
335 (list 'horiz "(" | |
336 (math-compose-vector (cdr (cdr a)) ", " 0) | |
337 ", ...")) | |
338 ((eq (nth 1 a) 'polar) | |
339 (list 'horiz "(" | |
340 (math-compose-vector (cdr (cdr a)) "; " 0) | |
341 "; ...")) | |
342 ((eq (nth 1 a) 'intv) | |
343 (list 'horiz | |
344 (if (memq (nth 2 a) '(0 1)) "(" "[") | |
345 (math-compose-vector (cdr (cdr (cdr a))) " .. " 0) | |
346 " .. ...")) | |
347 (t (format "%s" a))) | |
348 (cond ((eq (nth 1 a) 'vec) "[ ...") | |
349 ((eq (nth 1 a) 'intv) | |
350 (if (memq (nth 2 a) '(0 1)) "( ..." "[ ...")) | |
351 (t "( ...")))) | |
352 ((eq (car a) 'var) | |
353 (let ((v (rassq (nth 2 a) math-expr-variable-mapping))) | |
354 (if v | |
355 (symbol-name (car v)) | |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
356 (if (and (memq calc-language '(tex latex)) |
40785 | 357 calc-language-option |
358 (not (= calc-language-option 0)) | |
359 (string-match "\\`[a-zA-Z][a-zA-Z0-9]+\\'" | |
360 (symbol-name (nth 1 a)))) | |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
361 (if (eq calc-language 'latex) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
362 (format "\\text{%s}" (symbol-name (nth 1 a))) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
363 (format "\\hbox{%s}" (symbol-name (nth 1 a)))) |
40785 | 364 (if (and math-compose-hash-args |
365 (let ((p calc-arg-values)) | |
366 (setq v 1) | |
367 (while (and p (not (equal (car p) a))) | |
368 (setq p (and (eq math-compose-hash-args t) (cdr p)) | |
369 v (1+ v))) | |
370 p)) | |
371 (if (eq math-compose-hash-args 1) | |
372 "#" | |
373 (format "#%d" v)) | |
374 (if (memq calc-language '(c fortran pascal maple)) | |
375 (math-to-underscores (symbol-name (nth 1 a))) | |
376 (if (and (eq calc-language 'eqn) | |
377 (string-match ".'\\'" (symbol-name (nth 2 a)))) | |
378 (math-compose-expr | |
379 (list 'calcFunc-Prime | |
380 (list | |
381 'var | |
382 (intern (substring (symbol-name (nth 1 a)) 0 -1)) | |
383 (intern (substring (symbol-name (nth 2 a)) 0 -1)))) | |
384 prec) | |
385 (symbol-name (nth 1 a))))))))) | |
386 ((eq (car a) 'intv) | |
387 (list 'horiz | |
388 (if (eq calc-language 'maple) "" | |
389 (if (memq (nth 1 a) '(0 1)) "(" "[")) | |
390 (math-compose-expr (nth 2 a) 0) | |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
391 (if (memq calc-language '(tex latex)) " \\ldots " |
40785 | 392 (if (eq calc-language 'eqn) " ... " " .. ")) |
393 (math-compose-expr (nth 3 a) 0) | |
394 (if (eq calc-language 'maple) "" | |
395 (if (memq (nth 1 a) '(0 2)) ")" "]")))) | |
396 ((eq (car a) 'date) | |
397 (if (eq (car calc-date-format) 'X) | |
398 (math-format-date a) | |
399 (concat "<" (math-format-date a) ">"))) | |
400 ((and (eq (car a) 'calcFunc-subscr) (cdr (cdr a)) | |
401 (memq calc-language '(c pascal fortran maple))) | |
402 (let ((args (cdr (cdr a)))) | |
403 (while (and (memq calc-language '(pascal fortran)) | |
404 (eq (car-safe (nth 1 a)) 'calcFunc-subscr)) | |
405 (setq args (append (cdr (cdr (nth 1 a))) args) | |
406 a (nth 1 a))) | |
407 (list 'horiz | |
408 (math-compose-expr (nth 1 a) 1000) | |
409 (if (eq calc-language 'fortran) "(" "[") | |
410 (math-compose-vector args ", " 0) | |
411 (if (eq calc-language 'fortran) ")" "]")))) | |
412 ((and (eq (car a) 'calcFunc-subscr) (= (length a) 3) | |
413 (eq calc-language 'big)) | |
414 (let* ((a1 (math-compose-expr (nth 1 a) 1000)) | |
415 (calc-language 'flat) | |
416 (a2 (math-compose-expr (nth 2 a) 0))) | |
417 (if (or (eq (car-safe a1) 'subscr) | |
418 (and (eq (car-safe a1) 'tag) | |
419 (eq (car-safe (nth 2 a1)) 'subscr) | |
420 (setq a1 (nth 2 a1)))) | |
421 (list 'subscr | |
422 (nth 1 a1) | |
423 (list 'horiz | |
424 (nth 2 a1) | |
425 ", " | |
426 a2)) | |
427 (list 'subscr a1 a2)))) | |
428 ((and (eq (car a) 'calcFunc-subscr) (= (length a) 3) | |
429 (eq calc-language 'math)) | |
430 (list 'horiz | |
431 (math-compose-expr (nth 1 a) 1000) | |
432 "[[" | |
433 (math-compose-expr (nth 2 a) 0) | |
434 "]]")) | |
435 ((and (eq (car a) 'calcFunc-sqrt) | |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
436 (memq calc-language '(tex latex))) |
40785 | 437 (list 'horiz |
438 "\\sqrt{" | |
439 (math-compose-expr (nth 1 a) 0) | |
440 "}")) | |
441 ((and nil (eq (car a) 'calcFunc-sqrt) | |
442 (eq calc-language 'eqn)) | |
443 (list 'horiz | |
444 "sqrt {" | |
445 (math-compose-expr (nth 1 a) -1) | |
446 "}")) | |
447 ((and (eq (car a) '^) | |
448 (eq calc-language 'big)) | |
449 (list 'supscr | |
450 (if (or (math-looks-negp (nth 1 a)) | |
451 (memq (car-safe (nth 1 a)) '(^ / frac calcFunc-sqrt)) | |
452 (and (eq (car-safe (nth 1 a)) 'cplx) | |
453 (math-negp (nth 1 (nth 1 a))) | |
454 (eq (nth 2 (nth 1 a)) 0))) | |
455 (list 'horiz "(" (math-compose-expr (nth 1 a) 0) ")") | |
456 (math-compose-expr (nth 1 a) 201)) | |
457 (let ((calc-language 'flat) | |
458 (calc-number-radix 10)) | |
459 (math-compose-expr (nth 2 a) 0)))) | |
460 ((and (eq (car a) '/) | |
461 (eq calc-language 'big)) | |
462 (let ((a1 (let ((calc-language (if (memq (car-safe (nth 1 a)) '(/ frac)) | |
463 'flat 'big))) | |
464 (math-compose-expr (nth 1 a) 0))) | |
465 (a2 (let ((calc-language (if (memq (car-safe (nth 2 a)) '(/ frac)) | |
466 'flat 'big))) | |
467 (math-compose-expr (nth 2 a) 0)))) | |
468 (list 'vcent | |
469 (math-comp-height a1) | |
470 a1 '(rule ?-) a2))) | |
471 ((and (memq (car a) '(calcFunc-sum calcFunc-prod)) | |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
472 (memq calc-language '(tex latex)) |
40785 | 473 (= (length a) 5)) |
474 (list 'horiz (if (eq (car a) 'calcFunc-sum) "\\sum" "\\prod") | |
475 "_{" (math-compose-expr (nth 2 a) 0) | |
476 "=" (math-compose-expr (nth 3 a) 0) | |
477 "}^{" (math-compose-expr (nth 4 a) 0) | |
478 "}{" (math-compose-expr (nth 1 a) 0) "}")) | |
479 ((and (eq (car a) 'calcFunc-lambda) | |
480 (> (length a) 2) | |
481 (memq calc-language '(nil flat big))) | |
482 (let ((p (cdr a)) | |
483 (ap calc-arg-values) | |
484 (math-compose-hash-args (if (= (length a) 3) 1 t))) | |
485 (while (and (cdr p) (equal (car p) (car ap))) | |
486 (setq p (cdr p) ap (cdr ap))) | |
487 (append '(horiz "<") | |
488 (if (cdr p) | |
489 (list (math-compose-vector | |
490 (nreverse (cdr (reverse (cdr a)))) ", " 0) | |
491 " : ") | |
492 nil) | |
493 (list (math-compose-expr (nth (1- (length a)) a) 0) | |
494 ">")))) | |
495 ((and (eq (car a) 'calcFunc-string) | |
496 (= (length a) 2) | |
497 (math-vectorp (nth 1 a)) | |
498 (math-vector-is-string (nth 1 a))) | |
499 (if (eq calc-language 'unform) | |
500 (concat "string(" (math-vector-to-string (nth 1 a) t) ")") | |
501 (math-vector-to-string (nth 1 a) nil))) | |
502 ((and (eq (car a) 'calcFunc-bstring) | |
503 (= (length a) 2) | |
504 (math-vectorp (nth 1 a)) | |
505 (math-vector-is-string (nth 1 a))) | |
506 (if (eq calc-language 'unform) | |
507 (concat "bstring(" (math-vector-to-string (nth 1 a) t) ")") | |
508 (let ((c nil) | |
509 (s (math-vector-to-string (nth 1 a) nil)) | |
510 p) | |
511 (while (string-match "[^ ] +[^ ]" s) | |
512 (setq p (1- (match-end 0)) | |
513 c (cons (list 'break math-compose-level) | |
514 (cons (substring s 0 p) | |
515 c)) | |
516 s (substring s p))) | |
517 (setq c (nreverse (cons s c))) | |
518 (or (= prec -123) | |
519 (setq c (cons (list 'set math-compose-level 2) c))) | |
520 (cons 'horiz c)))) | |
521 ((and (eq (car a) 'calcFunc-cprec) | |
522 (not (eq calc-language 'unform)) | |
523 (= (length a) 3) | |
524 (integerp (nth 2 a))) | |
525 (let ((c (math-compose-expr (nth 1 a) -1))) | |
526 (if (> prec (nth 2 a)) | |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
527 (if (memq calc-language '(tex latex)) |
40785 | 528 (list 'horiz "\\left( " c " \\right)") |
529 (if (eq calc-language 'eqn) | |
530 (list 'horiz "{left ( " c " right )}") | |
531 (list 'horiz "(" c ")"))) | |
532 c))) | |
533 ((and (eq (car a) 'calcFunc-choriz) | |
534 (not (eq calc-language 'unform)) | |
535 (memq (length a) '(2 3 4)) | |
536 (math-vectorp (nth 1 a)) | |
537 (if (integerp (nth 2 a)) | |
538 (or (null (nth 3 a)) | |
539 (and (math-vectorp (nth 3 a)) | |
540 (math-vector-is-string (nth 3 a)))) | |
541 (or (null (nth 2 a)) | |
542 (and (math-vectorp (nth 2 a)) | |
543 (math-vector-is-string (nth 2 a)))))) | |
544 (let* ((cprec (and (integerp (nth 2 a)) (nth 2 a))) | |
545 (sep (nth (if cprec 3 2) a)) | |
546 (bprec nil)) | |
547 (if sep | |
548 (math-compose-vector (cdr (nth 1 a)) | |
549 (math-vector-to-string sep nil) | |
550 (or cprec prec)) | |
551 (cons 'horiz (mapcar (function | |
552 (lambda (x) | |
553 (if (eq (car-safe x) 'calcFunc-bstring) | |
554 (prog1 | |
555 (math-compose-expr | |
556 x (or bprec cprec prec)) | |
557 (setq bprec -123)) | |
558 (math-compose-expr x (or cprec prec))))) | |
559 (cdr (nth 1 a))))))) | |
560 ((and (memq (car a) '(calcFunc-cvert calcFunc-clvert calcFunc-crvert)) | |
561 (not (eq calc-language 'unform)) | |
562 (memq (length a) '(2 3)) | |
563 (math-vectorp (nth 1 a)) | |
564 (or (null (nth 2 a)) | |
565 (integerp (nth 2 a)))) | |
566 (let* ((base 0) | |
567 (v 0) | |
568 (prec (or (nth 2 a) prec)) | |
569 (c (mapcar (function | |
570 (lambda (x) | |
571 (let ((b nil) (cc nil) a d) | |
572 (if (and (memq (car-safe x) '(calcFunc-cbase | |
573 calcFunc-ctbase | |
574 calcFunc-cbbase)) | |
575 (memq (length x) '(1 2))) | |
576 (setq b (car x) | |
577 x (nth 1 x))) | |
578 (if (and (eq (car-safe x) 'calcFunc-crule) | |
579 (memq (length x) '(1 2)) | |
580 (or (null (nth 1 x)) | |
581 (and (math-vectorp (nth 1 x)) | |
582 (= (length (nth 1 x)) 2) | |
583 (math-vector-is-string | |
584 (nth 1 x))) | |
585 (and (natnump (nth 1 x)) | |
586 (<= (nth 1 x) 255)))) | |
587 (setq cc (list | |
588 'rule | |
589 (if (math-vectorp (nth 1 x)) | |
590 (aref (math-vector-to-string | |
591 (nth 1 x) nil) 0) | |
592 (or (nth 1 x) ?-)))) | |
593 (or (and (memq (car-safe x) '(calcFunc-cvspace | |
594 calcFunc-ctspace | |
595 calcFunc-cbspace)) | |
596 (memq (length x) '(2 3)) | |
597 (eq (nth 1 x) 0)) | |
598 (null x) | |
599 (setq cc (math-compose-expr x prec)))) | |
600 (setq a (if cc (math-comp-ascent cc) 0) | |
601 d (if cc (math-comp-descent cc) 0)) | |
602 (if (eq b 'calcFunc-cbase) | |
603 (setq base (+ v a -1)) | |
604 (if (eq b 'calcFunc-ctbase) | |
605 (setq base v) | |
606 (if (eq b 'calcFunc-cbbase) | |
607 (setq base (+ v a d -1))))) | |
608 (setq v (+ v a d)) | |
609 cc))) | |
610 (cdr (nth 1 a))))) | |
611 (setq c (delq nil c)) | |
612 (if c | |
613 (cons (if (eq (car a) 'calcFunc-cvert) 'vcent | |
614 (if (eq (car a) 'calcFunc-clvert) 'vleft 'vright)) | |
615 (cons base c)) | |
616 " "))) | |
617 ((and (memq (car a) '(calcFunc-csup calcFunc-csub)) | |
618 (not (eq calc-language 'unform)) | |
619 (memq (length a) '(3 4)) | |
620 (or (null (nth 3 a)) | |
621 (integerp (nth 3 a)))) | |
622 (list (if (eq (car a) 'calcFunc-csup) 'supscr 'subscr) | |
623 (math-compose-expr (nth 1 a) (or (nth 3 a) 0)) | |
624 (math-compose-expr (nth 2 a) 0))) | |
625 ((and (eq (car a) 'calcFunc-cflat) | |
626 (not (eq calc-language 'unform)) | |
627 (memq (length a) '(2 3)) | |
628 (or (null (nth 2 a)) | |
629 (integerp (nth 2 a)))) | |
630 (let ((calc-language (if (memq calc-language '(nil big)) | |
631 'flat calc-language))) | |
632 (math-compose-expr (nth 1 a) (or (nth 2 a) 0)))) | |
633 ((and (eq (car a) 'calcFunc-cspace) | |
634 (memq (length a) '(2 3)) | |
635 (natnump (nth 1 a))) | |
636 (if (nth 2 a) | |
637 (cons 'horiz (make-list (nth 1 a) | |
638 (if (and (math-vectorp (nth 2 a)) | |
639 (math-vector-is-string (nth 2 a))) | |
640 (math-vector-to-string (nth 2 a) nil) | |
641 (math-compose-expr (nth 2 a) 0)))) | |
642 (make-string (nth 1 a) ?\ ))) | |
643 ((and (memq (car a) '(calcFunc-cvspace calcFunc-ctspace calcFunc-cbspace)) | |
644 (memq (length a) '(2 3)) | |
645 (natnump (nth 1 a))) | |
646 (if (= (nth 1 a) 0) | |
647 "" | |
648 (let* ((c (if (nth 2 a) | |
649 (if (and (math-vectorp (nth 2 a)) | |
650 (math-vector-is-string (nth 2 a))) | |
651 (math-vector-to-string (nth 2 a) nil) | |
652 (math-compose-expr (nth 2 a) 0)) | |
653 " ")) | |
654 (ca (math-comp-ascent c)) | |
655 (cd (math-comp-descent c))) | |
656 (cons 'vleft | |
657 (cons (if (eq (car a) 'calcFunc-ctspace) | |
658 (1- ca) | |
659 (if (eq (car a) 'calcFunc-cbspace) | |
660 (+ (* (1- (nth 1 a)) (+ ca cd)) (1- ca)) | |
661 (/ (1- (* (nth 1 a) (+ ca cd))) 2))) | |
662 (make-list (nth 1 a) c)))))) | |
663 ((and (eq (car a) 'calcFunc-evalto) | |
664 (setq calc-any-evaltos t) | |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
665 (memq calc-language '(tex latex eqn)) |
40785 | 666 (= math-compose-level (if math-comp-tagged 2 1)) |
667 (= (length a) 3)) | |
668 (list 'horiz | |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
669 (if (memq calc-language '(tex latex)) "\\evalto " "evalto ") |
40785 | 670 (math-compose-expr (nth 1 a) 0) |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
671 (if (memq calc-language '(tex latex)) " \\to " " -> ") |
40785 | 672 (math-compose-expr (nth 2 a) 0))) |
673 (t | |
674 (let ((op (and (not (eq calc-language 'unform)) | |
675 (if (and (eq (car a) 'calcFunc-if) (= (length a) 4)) | |
676 (assoc "?" math-expr-opers) | |
677 (math-assq2 (car a) math-expr-opers))))) | |
678 (cond ((and op | |
679 (or (= (length a) 3) (eq (car a) 'calcFunc-if)) | |
680 (/= (nth 3 op) -1)) | |
681 (cond | |
682 ((> prec (or (nth 4 op) (min (nth 2 op) (nth 3 op)))) | |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
683 (if (and (memq calc-language '(tex latex)) |
40785 | 684 (not (math-tex-expr-is-flat a))) |
685 (if (eq (car-safe a) '/) | |
686 (list 'horiz "{" (math-compose-expr a -1) "}") | |
687 (list 'horiz "\\left( " | |
688 (math-compose-expr a -1) | |
689 " \\right)")) | |
690 (if (eq calc-language 'eqn) | |
691 (if (or (eq (car-safe a) '/) | |
692 (= (/ prec 100) 9)) | |
693 (list 'horiz "{" (math-compose-expr a -1) "}") | |
694 (if (math-tex-expr-is-flat a) | |
695 (list 'horiz "( " (math-compose-expr a -1) " )") | |
696 (list 'horiz "{left ( " | |
697 (math-compose-expr a -1) | |
698 " right )}"))) | |
699 (list 'horiz "(" (math-compose-expr a 0) ")")))) | |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
700 ((and (memq calc-language '(tex latex)) |
40785 | 701 (memq (car a) '(/ calcFunc-choose calcFunc-evalto)) |
702 (>= prec 0)) | |
703 (list 'horiz "{" (math-compose-expr a -1) "}")) | |
704 ((eq (car a) 'calcFunc-if) | |
705 (list 'horiz | |
706 (math-compose-expr (nth 1 a) (nth 2 op)) | |
707 " ? " | |
708 (math-compose-expr (nth 2 a) 0) | |
709 " : " | |
710 (math-compose-expr (nth 3 a) (nth 3 op)))) | |
711 (t | |
712 (let* ((math-comp-tagged (and math-comp-tagged | |
713 (not (math-primp a)) | |
714 math-comp-tagged)) | |
715 (setlev (if (= prec (min (nth 2 op) (nth 3 op))) | |
716 (progn | |
717 (setq math-compose-level | |
718 (1- math-compose-level)) | |
719 nil) | |
720 math-compose-level)) | |
721 (lhs (math-compose-expr (nth 1 a) (nth 2 op))) | |
722 (rhs (math-compose-expr (nth 2 a) (nth 3 op)))) | |
723 (and (equal (car op) "^") | |
724 (eq (math-comp-first-char lhs) ?-) | |
725 (setq lhs (list 'horiz "(" lhs ")"))) | |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
726 (and (memq calc-language '(tex latex)) |
40785 | 727 (or (equal (car op) "^") (equal (car op) "_")) |
728 (not (and (stringp rhs) (= (length rhs) 1))) | |
729 (setq rhs (list 'horiz "{" rhs "}"))) | |
730 (or (and (eq (car a) '*) | |
731 (or (null calc-language) | |
732 (assoc "2x" math-expr-opers)) | |
733 (let* ((prevt (math-prod-last-term (nth 1 a))) | |
734 (nextt (math-prod-first-term (nth 2 a))) | |
735 (prevc (or (math-comp-last-char lhs) | |
736 (and (memq (car-safe prevt) | |
737 '(^ calcFunc-subscr | |
738 calcFunc-sqrt | |
739 frac)) | |
740 (eq calc-language 'big) | |
741 ?0))) | |
742 (nextc (or (math-comp-first-char rhs) | |
743 (and (memq (car-safe nextt) | |
744 '(calcFunc-sqrt | |
745 calcFunc-sum | |
746 calcFunc-prod | |
747 calcFunc-integ)) | |
748 (eq calc-language 'big) | |
749 ?0)))) | |
750 (and prevc nextc | |
751 (or (and (>= nextc ?a) (<= nextc ?z)) | |
752 (and (>= nextc ?A) (<= nextc ?Z)) | |
753 (and (>= nextc ?0) (<= nextc ?9)) | |
754 (memq nextc '(?. ?_ ?# | |
755 ?\( ?\[ ?\{)) | |
756 (and (eq nextc ?\\) | |
757 (not (string-match | |
758 "\\`\\\\left(" | |
759 (math-comp-first-string | |
760 rhs))))) | |
761 (not (and (eq (car-safe prevt) 'var) | |
762 (eq nextc ?\())) | |
763 (list 'horiz | |
764 (list 'set setlev 1) | |
765 lhs | |
766 (list 'break math-compose-level) | |
767 " " | |
768 rhs)))) | |
769 (list 'horiz | |
770 (list 'set setlev 1) | |
771 lhs | |
772 (list 'break math-compose-level) | |
773 (if (or (equal (car op) "^") | |
774 (equal (car op) "_") | |
775 (equal (car op) "**") | |
776 (and (equal (car op) "*") | |
777 (math-comp-last-char lhs) | |
778 (math-comp-first-char rhs)) | |
779 (and (equal (car op) "/") | |
780 (math-num-integerp (nth 1 a)) | |
781 (math-integerp (nth 2 a)))) | |
782 (car op) | |
783 (if (and (eq calc-language 'big) | |
784 (equal (car op) "=>")) | |
785 " => " | |
786 (concat " " (car op) " "))) | |
787 rhs)))))) | |
788 ((and op (= (length a) 2) (= (nth 3 op) -1)) | |
789 (cond | |
790 ((or (> prec (or (nth 4 op) (nth 2 op))) | |
791 (and (not (eq (assoc (car op) math-expr-opers) op)) | |
792 (> prec 0))) ; don't write x% + y | |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
793 (if (and (memq calc-language '(tex latex)) |
40785 | 794 (not (math-tex-expr-is-flat a))) |
795 (list 'horiz "\\left( " | |
796 (math-compose-expr a -1) | |
797 " \\right)") | |
798 (if (eq calc-language 'eqn) | |
799 (if (= (/ prec 100) 9) | |
800 (list 'horiz "{" (math-compose-expr a -1) "}") | |
801 (if (math-tex-expr-is-flat a) | |
802 (list 'horiz "{( " (math-compose-expr a -1) " )}") | |
803 (list 'horiz "{left ( " | |
804 (math-compose-expr a -1) | |
805 " right )}"))) | |
806 (list 'horiz "(" (math-compose-expr a 0) ")")))) | |
807 (t | |
808 (let ((lhs (math-compose-expr (nth 1 a) (nth 2 op)))) | |
809 (list 'horiz | |
810 lhs | |
811 (if (or (> (length (car op)) 1) | |
812 (not (math-comp-is-flat lhs))) | |
813 (concat " " (car op)) | |
814 (car op))))))) | |
815 ((and op (= (length a) 2) (= (nth 2 op) -1)) | |
816 (cond | |
817 ((eq (nth 3 op) 0) | |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
818 (let ((lr (and (memq calc-language '(tex latex)) |
40785 | 819 (not (math-tex-expr-is-flat (nth 1 a)))))) |
820 (list 'horiz | |
821 (if lr "\\left" "") | |
822 (if (string-match "\\`u\\([^a-zA-Z]\\)\\'" (car op)) | |
823 (substring (car op) 1) | |
824 (car op)) | |
825 (if (or lr (> (length (car op)) 2)) " " "") | |
826 (math-compose-expr (nth 1 a) -1) | |
827 (if (or lr (> (length (car op)) 2)) " " "") | |
828 (if lr "\\right" "") | |
829 (car (nth 1 (memq op math-expr-opers)))))) | |
830 ((> prec (or (nth 4 op) (nth 3 op))) | |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
831 (if (and (memq calc-language '(tex latex)) |
40785 | 832 (not (math-tex-expr-is-flat a))) |
833 (list 'horiz "\\left( " | |
834 (math-compose-expr a -1) | |
835 " \\right)") | |
836 (if (eq calc-language 'eqn) | |
837 (if (= (/ prec 100) 9) | |
838 (list 'horiz "{" (math-compose-expr a -1) "}") | |
839 (if (math-tex-expr-is-flat a) | |
840 (list 'horiz "{( " (math-compose-expr a -1) " )}") | |
841 (list 'horiz "{left ( " | |
842 (math-compose-expr a -1) | |
843 " right )}"))) | |
844 (list 'horiz "(" (math-compose-expr a 0) ")")))) | |
845 (t | |
846 (let ((rhs (math-compose-expr (nth 1 a) (nth 3 op)))) | |
847 (list 'horiz | |
848 (let ((ops (if (string-match "\\`u\\([^a-zA-Z]\\)\\'" | |
849 (car op)) | |
850 (substring (car op) 1) | |
851 (car op)))) | |
852 (if (or (> (length ops) 1) | |
853 (not (math-comp-is-flat rhs))) | |
854 (concat ops " ") | |
855 ops)) | |
856 rhs))))) | |
857 ((and (eq calc-language 'big) | |
858 (setq op (get (car a) 'math-compose-big)) | |
859 (funcall op a prec))) | |
860 ((and (setq op (assq calc-language | |
861 '( ( nil . math-compose-normal ) | |
862 ( flat . math-compose-normal ) | |
863 ( big . math-compose-normal ) | |
864 ( c . math-compose-c ) | |
865 ( pascal . math-compose-pascal ) | |
866 ( fortran . math-compose-fortran ) | |
867 ( tex . math-compose-tex ) | |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
868 ( latex . math-compose-latex ) |
40785 | 869 ( eqn . math-compose-eqn ) |
870 ( math . math-compose-math ) | |
871 ( maple . math-compose-maple )))) | |
872 (setq op (get (car a) (cdr op))) | |
873 (funcall op a prec))) | |
874 (t | |
875 (let* ((func (car a)) | |
876 (func2 (assq func '(( mod . calcFunc-makemod ) | |
877 ( sdev . calcFunc-sdev ) | |
878 ( + . calcFunc-add ) | |
879 ( - . calcFunc-sub ) | |
880 ( * . calcFunc-mul ) | |
881 ( / . calcFunc-div ) | |
882 ( % . calcFunc-mod ) | |
883 ( ^ . calcFunc-pow ) | |
884 ( neg . calcFunc-neg ) | |
885 ( | . calcFunc-vconcat )))) | |
886 left right args) | |
887 (if func2 | |
888 (setq func (cdr func2))) | |
889 (if (setq func2 (rassq func math-expr-function-mapping)) | |
890 (setq func (car func2))) | |
891 (setq func (math-remove-dashes | |
892 (if (string-match | |
893 "\\`calcFunc-\\([a-zA-Z0-9']+\\)\\'" | |
894 (symbol-name func)) | |
895 (math-match-substring (symbol-name func) 1) | |
896 (symbol-name func)))) | |
897 (if (memq calc-language '(c fortran pascal maple)) | |
898 (setq func (math-to-underscores func))) | |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
899 (if (and (memq calc-language '(tex latex)) |
40785 | 900 calc-language-option |
901 (not (= calc-language-option 0)) | |
902 (string-match "\\`[a-zA-Z][a-zA-Z0-9]+\\'" func)) | |
903 (if (< (prefix-numeric-value calc-language-option) 0) | |
904 (setq func (format "\\%s" func)) | |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
905 (setq func (if (eq calc-language 'latex) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
906 (format "\\text{%s}" func) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
907 (format "\\hbox{%s}" func))))) |
40785 | 908 (if (and (eq calc-language 'eqn) |
909 (string-match "[^']'+\\'" func)) | |
910 (let ((n (- (length func) (match-beginning 0) 1))) | |
911 (setq func (substring func 0 (- n))) | |
912 (while (>= (setq n (1- n)) 0) | |
913 (setq func (concat func " prime"))))) | |
59982
107c288df93f
(math-compose-expr): Fix a check for language type.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
59965
diff
changeset
|
914 (cond ((and (memq calc-language '(tex latex)) |
40785 | 915 (or (> (length a) 2) |
916 (not (math-tex-expr-is-flat (nth 1 a))))) | |
917 (setq left "\\left( " | |
918 right " \\right)")) | |
919 ((and (eq calc-language 'eqn) | |
920 (or (> (length a) 2) | |
921 (not (math-tex-expr-is-flat (nth 1 a))))) | |
922 (setq left "{left ( " | |
923 right " right )}")) | |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
924 ((and (or (and (memq calc-language '(tex latex)) |
40785 | 925 (eq (aref func 0) ?\\)) |
926 (and (eq calc-language 'eqn) | |
927 (memq (car a) math-eqn-special-funcs))) | |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
928 (not (or |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
929 (string-match "\\hbox{" func) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
930 (string-match "\\text{" func))) |
40785 | 931 (= (length a) 2) |
932 (or (Math-realp (nth 1 a)) | |
933 (memq (car (nth 1 a)) '(var *)))) | |
934 (setq left (if (eq calc-language 'eqn) "~{" "{") | |
935 right "}")) | |
936 ((eq calc-language 'eqn) | |
937 (setq left " ( " | |
938 right " )")) | |
939 (t (setq left calc-function-open | |
940 right calc-function-close))) | |
941 (list 'horiz func left | |
942 (math-compose-vector (cdr a) | |
943 (if (eq calc-language 'eqn) | |
944 " , " ", ") | |
945 0) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
946 right))))))))) |
40785 | 947 |
948 | |
949 (defun math-prod-first-term (x) | |
950 (while (eq (car-safe x) '*) | |
951 (setq x (nth 1 x))) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
952 x) |
40785 | 953 |
954 (defun math-prod-last-term (x) | |
955 (while (eq (car-safe x) '*) | |
956 (setq x (nth 2 x))) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
957 x) |
40785 | 958 |
959 (defun math-compose-vector (a sep prec) | |
960 (if a | |
961 (cons 'horiz | |
962 (cons (list 'set math-compose-level) | |
963 (let ((c (list (math-compose-expr (car a) prec)))) | |
964 (while (setq a (cdr a)) | |
965 (setq c (cons (if (eq (car-safe (car a)) | |
966 'calcFunc-bstring) | |
967 (let ((math-compose-level | |
968 (1- math-compose-level))) | |
969 (math-compose-expr (car a) -123)) | |
970 (math-compose-expr (car a) prec)) | |
971 (cons (list 'break math-compose-level) | |
972 (cons sep c))))) | |
973 (nreverse c)))) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
974 "")) |
40785 | 975 |
976 (defun math-vector-no-parens (a) | |
977 (or (cdr (cdr a)) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
978 (not (eq (car-safe (nth 1 a)) '*)))) |
40785 | 979 |
980 (defun math-compose-matrix (a col cols base) | |
981 (let ((col 0) | |
982 (res nil)) | |
983 (while (<= (setq col (1+ col)) cols) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
984 (setq res (cons (cons math-comp-just |
40785 | 985 (cons base |
986 (mapcar (function | |
987 (lambda (r) | |
988 (list 'horiz | |
989 (math-compose-expr | |
990 (nth col r) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
991 math-comp-vector-prec) |
40785 | 992 (if (= col cols) |
993 "" | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
994 (concat |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
995 math-comp-comma-spc " "))))) |
40785 | 996 a))) |
997 res))) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
998 (nreverse res))) |
40785 | 999 |
1000 (defun math-compose-rows (a count first) | |
1001 (if (cdr a) | |
1002 (if (<= count 0) | |
1003 (if (< count 0) | |
1004 (math-compose-rows (cdr a) -1 nil) | |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
1005 (cons (concat (if (memq calc-language '(tex latex)) " \\ldots" " ...") |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1006 math-comp-comma) |
40785 | 1007 (math-compose-rows (cdr a) -1 nil))) |
1008 (cons (list 'horiz | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1009 (if first (concat math-comp-left-bracket " ") " ") |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1010 (math-compose-expr (car a) math-comp-vector-prec) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1011 math-comp-comma) |
40785 | 1012 (math-compose-rows (cdr a) (1- count) nil))) |
1013 (list (list 'horiz | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1014 (if first (concat math-comp-left-bracket " ") " ") |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1015 (math-compose-expr (car a) math-comp-vector-prec) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1016 (concat " " math-comp-right-bracket))))) |
40785 | 1017 |
1018 (defun math-compose-tex-matrix (a) | |
1019 (if (cdr a) | |
59814
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
1020 (cons (append (math-compose-vector (cdr (car a)) " & " 0) '(" \\\\ ")) |
53059b002005
(math-compose-expr, math-compose-rows): Add LaTeX support.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58683
diff
changeset
|
1021 (math-compose-tex-matrix (cdr a))) |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1022 (list (math-compose-vector (cdr (car a)) " & " 0)))) |
40785 | 1023 |
1024 (defun math-compose-eqn-matrix (a) | |
1025 (if a | |
1026 (cons | |
1027 (cond ((eq calc-matrix-just 'right) "rcol ") | |
1028 ((eq calc-matrix-just 'center) "ccol ") | |
1029 (t "lcol ")) | |
1030 (cons | |
1031 (list 'break math-compose-level) | |
1032 (cons | |
1033 "{ " | |
1034 (cons | |
1035 (let ((math-compose-level (1+ math-compose-level))) | |
1036 (math-compose-vector (cdr (car a)) " above " 1000)) | |
1037 (cons | |
1038 " } " | |
1039 (math-compose-eqn-matrix (cdr a))))))) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1040 nil)) |
40785 | 1041 |
1042 (defun math-vector-is-string (a) | |
1043 (while (and (setq a (cdr a)) | |
1044 (or (and (natnump (car a)) | |
1045 (<= (car a) 255)) | |
1046 (and (eq (car-safe (car a)) 'cplx) | |
1047 (natnump (nth 1 (car a))) | |
1048 (eq (nth 2 (car a)) 0) | |
1049 (<= (nth 1 (car a)) 255))))) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1050 (null a)) |
40785 | 1051 |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1052 (defconst math-vector-to-string-chars '( ( ?\" . "\\\"" ) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1053 ( ?\\ . "\\\\" ) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1054 ( ?\a . "\\a" ) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1055 ( ?\b . "\\b" ) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1056 ( ?\e . "\\e" ) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1057 ( ?\f . "\\f" ) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1058 ( ?\n . "\\n" ) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1059 ( ?\r . "\\r" ) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1060 ( ?\t . "\\t" ) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1061 ( ?\^? . "\\^?" ))) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1062 |
40785 | 1063 (defun math-vector-to-string (a &optional quoted) |
1064 (setq a (concat (mapcar (function (lambda (x) (if (consp x) (nth 1 x) x))) | |
1065 (cdr a)))) | |
1066 (if (string-match "[\000-\037\177\\\"]" a) | |
1067 (let ((p 0) | |
1068 (pat (if quoted "[\000-\037\177\\\"]" "[\000-\037\177]")) | |
1069 (codes (if quoted math-vector-to-string-chars '((?\^? . "^?")))) | |
1070 (fmt (if quoted "\\^%c" "^%c")) | |
1071 new) | |
1072 (while (setq p (string-match pat a p)) | |
1073 (if (setq new (assq (aref a p) codes)) | |
1074 (setq a (concat (substring a 0 p) | |
1075 (cdr new) | |
1076 (substring a (1+ p))) | |
1077 p (+ p (length (cdr new)))) | |
1078 (setq a (concat (substring a 0 p) | |
1079 (format fmt (+ (aref a p) 64)) | |
1080 (substring a (1+ p))) | |
1081 p (+ p 2)))))) | |
1082 (if quoted | |
1083 (concat "\"" a "\"") | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1084 a)) |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1085 |
40785 | 1086 |
1087 (defun math-to-underscores (x) | |
1088 (if (string-match "\\`\\(.*\\)#\\(.*\\)\\'" x) | |
1089 (math-to-underscores | |
1090 (concat (math-match-substring x 1) "_" (math-match-substring x 2))) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1091 x)) |
40785 | 1092 |
1093 (defun math-tex-expr-is-flat (a) | |
1094 (or (Math-integerp a) | |
1095 (memq (car a) '(float var)) | |
1096 (and (memq (car a) '(+ - * neg)) | |
1097 (progn | |
1098 (while (and (setq a (cdr a)) | |
1099 (math-tex-expr-is-flat (car a)))) | |
1100 (null a))) | |
1101 (and (memq (car a) '(^ calcFunc-subscr)) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1102 (math-tex-expr-is-flat (nth 1 a))))) |
40785 | 1103 |
1104 (put 'calcFunc-log 'math-compose-big 'math-compose-log) | |
1105 (defun math-compose-log (a prec) | |
1106 (and (= (length a) 3) | |
1107 (list 'horiz | |
1108 (list 'subscr "log" | |
1109 (let ((calc-language 'flat)) | |
1110 (math-compose-expr (nth 2 a) 1000))) | |
1111 "(" | |
1112 (math-compose-expr (nth 1 a) 1000) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1113 ")"))) |
40785 | 1114 |
1115 (put 'calcFunc-log10 'math-compose-big 'math-compose-log10) | |
1116 (defun math-compose-log10 (a prec) | |
1117 (and (= (length a) 2) | |
1118 (list 'horiz | |
1119 (list 'subscr "log" "10") | |
1120 "(" | |
1121 (math-compose-expr (nth 1 a) 1000) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1122 ")"))) |
40785 | 1123 |
1124 (put 'calcFunc-deriv 'math-compose-big 'math-compose-deriv) | |
1125 (put 'calcFunc-tderiv 'math-compose-big 'math-compose-deriv) | |
1126 (defun math-compose-deriv (a prec) | |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1127 (when (= (length a) 3) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1128 (math-compose-expr (list '/ |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1129 (list 'calcFunc-choriz |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1130 (list 'vec |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1131 '(calcFunc-string (vec ?d)) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1132 (nth 1 a))) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1133 (list 'calcFunc-choriz |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1134 (list 'vec |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1135 '(calcFunc-string (vec ?d)) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1136 (nth 2 a)))) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1137 prec))) |
40785 | 1138 |
1139 (put 'calcFunc-sqrt 'math-compose-big 'math-compose-sqrt) | |
1140 (defun math-compose-sqrt (a prec) | |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1141 (when (= (length a) 2) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1142 (let* ((c (math-compose-expr (nth 1 a) 0)) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1143 (a (math-comp-ascent c)) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1144 (d (math-comp-descent c)) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1145 (h (+ a d)) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1146 (w (math-comp-width c))) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1147 (list 'vleft |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1148 a |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1149 (concat (if (= h 1) " " " ") |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1150 (make-string (+ w 2) ?\_)) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1151 (list 'horiz |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1152 (if (= h 1) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1153 "V" |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1154 (append (list 'vleft (1- a)) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1155 (make-list (1- h) " |") |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1156 '("\\|"))) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1157 " " |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1158 c))))) |
40785 | 1159 |
1160 (put 'calcFunc-choose 'math-compose-big 'math-compose-choose) | |
1161 (defun math-compose-choose (a prec) | |
1162 (let ((a1 (math-compose-expr (nth 1 a) 0)) | |
1163 (a2 (math-compose-expr (nth 2 a) 0))) | |
1164 (list 'horiz | |
1165 "(" | |
1166 (list 'vcent | |
1167 (math-comp-height a1) | |
1168 a1 " " a2) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1169 ")"))) |
40785 | 1170 |
1171 (put 'calcFunc-integ 'math-compose-big 'math-compose-integ) | |
1172 (defun math-compose-integ (a prec) | |
1173 (and (memq (length a) '(3 5)) | |
1174 (eq (car-safe (nth 2 a)) 'var) | |
1175 (let* ((parens (and (>= prec 196) (/= prec 1000))) | |
1176 (var (math-compose-expr (nth 2 a) 0)) | |
1177 (over (and (eq (car-safe (nth 2 a)) 'var) | |
1178 (or (and (eq (car-safe (nth 1 a)) '/) | |
1179 (math-numberp (nth 1 (nth 1 a)))) | |
1180 (and (eq (car-safe (nth 1 a)) '^) | |
1181 (math-looks-negp (nth 2 (nth 1 a))))))) | |
1182 (expr (math-compose-expr (if over | |
1183 (math-mul (nth 1 a) | |
1184 (math-build-var-name | |
1185 (format | |
1186 "d%s" | |
1187 (nth 1 (nth 2 a))))) | |
1188 (nth 1 a)) 185)) | |
1189 (calc-language 'flat) | |
1190 (low (and (nth 3 a) (math-compose-expr (nth 3 a) 0))) | |
1191 (high (and (nth 4 a) (math-compose-expr (nth 4 a) 0)))) | |
1192 (list 'horiz | |
1193 (if parens "(" "") | |
1194 (append (list 'vcent (if high 3 2)) | |
1195 (and high (list (list 'horiz " " high))) | |
1196 '(" /" | |
1197 " | " | |
1198 " | " | |
1199 " | " | |
1200 "/ ") | |
1201 (and low (list (list 'horiz low " ")))) | |
1202 expr | |
1203 (if over | |
1204 "" | |
1205 (list 'horiz " d" var)) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1206 (if parens ")" ""))))) |
40785 | 1207 |
1208 (put 'calcFunc-sum 'math-compose-big 'math-compose-sum) | |
1209 (defun math-compose-sum (a prec) | |
1210 (and (memq (length a) '(3 5 6)) | |
1211 (let* ((expr (math-compose-expr (nth 1 a) 185)) | |
1212 (calc-language 'flat) | |
1213 (var (math-compose-expr (nth 2 a) 0)) | |
1214 (low (and (nth 3 a) (math-compose-expr (nth 3 a) 0))) | |
1215 (high (and (nth 4 a) (math-compose-vector (nthcdr 4 a) ", " 0)))) | |
1216 (list 'horiz | |
1217 (if (memq prec '(180 201)) "(" "") | |
1218 (append (list 'vcent (if high 3 2)) | |
1219 (and high (list high)) | |
1220 '("---- " | |
1221 "\\ " | |
1222 " > " | |
1223 "/ " | |
1224 "---- ") | |
1225 (if low | |
1226 (list (list 'horiz var " = " low)) | |
1227 (list var))) | |
1228 (if (memq (car-safe (nth 1 a)) '(calcFunc-sum calcFunc-prod)) | |
1229 " " "") | |
1230 expr | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1231 (if (memq prec '(180 201)) ")" ""))))) |
40785 | 1232 |
1233 (put 'calcFunc-prod 'math-compose-big 'math-compose-prod) | |
1234 (defun math-compose-prod (a prec) | |
1235 (and (memq (length a) '(3 5 6)) | |
1236 (let* ((expr (math-compose-expr (nth 1 a) 198)) | |
1237 (calc-language 'flat) | |
1238 (var (math-compose-expr (nth 2 a) 0)) | |
1239 (low (and (nth 3 a) (math-compose-expr (nth 3 a) 0))) | |
1240 (high (and (nth 4 a) (math-compose-vector (nthcdr 4 a) ", " 0)))) | |
1241 (list 'horiz | |
1242 (if (memq prec '(196 201)) "(" "") | |
1243 (append (list 'vcent (if high 3 2)) | |
1244 (and high (list high)) | |
1245 '("----- " | |
1246 " | | " | |
1247 " | | " | |
1248 " | | ") | |
1249 (if low | |
1250 (list (list 'horiz var " = " low)) | |
1251 (list var))) | |
1252 (if (memq (car-safe (nth 1 a)) '(calcFunc-sum calcFunc-prod)) | |
1253 " " "") | |
1254 expr | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1255 (if (memq prec '(196 201)) ")" ""))))) |
40785 | 1256 |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1257 ;; The variables math-svo-c, math-svo-wid and math-svo-off are local |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1258 ;; to math-stack-value-offset in calc.el, but are used by |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1259 ;; math-stack-value-offset-fancy, which is called by math-stack-value-offset.. |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1260 (defvar math-svo-c) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1261 (defvar math-svo-wid) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1262 (defvar math-svo-off) |
40785 | 1263 |
1264 (defun math-stack-value-offset-fancy () | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1265 (let ((cwid (+ (math-comp-width math-svo-c)))) |
40785 | 1266 (cond ((eq calc-display-just 'right) |
1267 (if calc-display-origin | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1268 (setq math-svo-wid (max calc-display-origin 5)) |
40785 | 1269 (if (integerp calc-line-breaking) |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1270 (setq math-svo-wid calc-line-breaking))) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1271 (setq math-svo-off (- math-svo-wid cwid |
40785 | 1272 (max (- (length calc-right-label) |
1273 (if (and (integerp calc-line-breaking) | |
1274 calc-display-origin) | |
1275 (max (- calc-line-breaking | |
1276 calc-display-origin) | |
1277 0) | |
1278 0)) | |
1279 0)))) | |
1280 (t | |
1281 (if calc-display-origin | |
1282 (progn | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1283 (setq math-svo-off (- calc-display-origin (/ cwid 2))) |
40785 | 1284 (if (integerp calc-line-breaking) |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1285 (setq math-svo-off (min math-svo-off (- calc-line-breaking cwid |
40785 | 1286 (length calc-right-label))))) |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1287 (if (>= math-svo-off 0) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1288 (setq math-svo-wid (max math-svo-wid (+ math-svo-off cwid))))) |
40785 | 1289 (if (integerp calc-line-breaking) |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1290 (setq math-svo-wid calc-line-breaking)) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1291 (setq math-svo-off (/ (- math-svo-wid cwid) 2))))) |
40785 | 1292 (and (integerp calc-line-breaking) |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1293 (or (< math-svo-off 0) |
40785 | 1294 (and calc-display-origin |
1295 (> calc-line-breaking calc-display-origin))) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1296 (setq math-svo-wid calc-line-breaking)))) |
40785 | 1297 |
1298 | |
1299 ;;; Convert a composition to string form, with embedded \n's if necessary. | |
1300 | |
1301 (defun math-composition-to-string (c &optional width) | |
1302 (or width (setq width (calc-window-width))) | |
1303 (if calc-display-raw | |
1304 (math-comp-to-string-raw c 0) | |
1305 (if (math-comp-is-flat c) | |
1306 (math-comp-to-string-flat c width) | |
1307 (math-vert-comp-to-string | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1308 (math-comp-simplify c width))))) |
40785 | 1309 |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1310 (defvar math-comp-buf-string (make-vector 10 "")) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1311 (defvar math-comp-buf-margin (make-vector 10 0)) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1312 (defvar math-comp-buf-level (make-vector 10 0)) |
40785 | 1313 (defun math-comp-is-flat (c) ; check if c's height is 1. |
1314 (cond ((not (consp c)) t) | |
1315 ((memq (car c) '(set break)) t) | |
1316 ((eq (car c) 'horiz) | |
1317 (while (and (setq c (cdr c)) | |
1318 (math-comp-is-flat (car c)))) | |
1319 (null c)) | |
1320 ((memq (car c) '(vleft vcent vright)) | |
1321 (and (= (length c) 3) | |
1322 (= (nth 1 c) 0) | |
1323 (math-comp-is-flat (nth 2 c)))) | |
1324 ((eq (car c) 'tag) | |
1325 (math-comp-is-flat (nth 2 c))) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1326 (t nil))) |
40785 | 1327 |
1328 | |
1329 ;;; Convert a one-line composition to a string. Break into multiple | |
1330 ;;; lines if necessary, choosing break points according to the structure | |
1331 ;;; of the formula. | |
1332 | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1333 ;; The variables math-comp-full-width, math-comp-highlight, math-comp-word, |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1334 ;; math-comp-level, math-comp-margin and math-comp-buf are local to |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1335 ;; math-comp-to-string-flat, but are used by math-comp-to-string-flat-term, |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1336 ;; which is called by math-comp-to-string-flat. |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1337 ;; math-comp-highlight and math-comp-buf are also local to |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1338 ;; math-comp-simplify-term and math-comp-simplify respectively, but are used |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1339 ;; by math-comp-add-string. |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1340 (defvar math-comp-full-width) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1341 (defvar math-comp-highlight) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1342 (defvar math-comp-word) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1343 (defvar math-comp-level) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1344 (defvar math-comp-margin) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1345 (defvar math-comp-buf) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1346 ;; The variable math-comp-pos is local to math-comp-to-string-flat, but |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1347 ;; is used by math-comp-to-string-flat-term and math-comp-sel-first-term, |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1348 ;; which are called by math-comp-to-string-flat. |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1349 (defvar math-comp-pos) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1350 |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1351 (defun math-comp-to-string-flat (c math-comp-full-width) |
40785 | 1352 (if math-comp-sel-hpos |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1353 (let ((math-comp-pos 0)) |
40785 | 1354 (math-comp-sel-flat-term c)) |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1355 (let ((math-comp-buf "") |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1356 (math-comp-word "") |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1357 (math-comp-pos 0) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1358 (math-comp-margin 0) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1359 (math-comp-highlight (and math-comp-selected calc-show-selections)) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1360 (math-comp-level -1)) |
40785 | 1361 (math-comp-to-string-flat-term '(set -1 0)) |
1362 (math-comp-to-string-flat-term c) | |
1363 (math-comp-to-string-flat-term '(break -1)) | |
1364 (let ((str (aref math-comp-buf-string 0)) | |
1365 (prefix "")) | |
1366 (and (> (length str) 0) (= (aref str 0) ? ) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1367 (> (length math-comp-buf) 0) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1368 (let ((k (length math-comp-buf))) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1369 (while (not (= (aref math-comp-buf (setq k (1- k))) ?\n))) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1370 (aset math-comp-buf k ? ) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1371 (if (and (< (1+ k) (length math-comp-buf)) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1372 (= (aref math-comp-buf (1+ k)) ? )) |
40785 | 1373 (progn |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1374 (aset math-comp-buf (1+ k) ?\n) |
40785 | 1375 (setq prefix " ")) |
1376 (setq prefix "\n")))) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1377 (concat math-comp-buf prefix str))))) |
40785 | 1378 |
1379 (defun math-comp-to-string-flat-term (c) | |
1380 (cond ((not (consp c)) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1381 (if math-comp-highlight |
40785 | 1382 (setq c (math-comp-highlight-string c))) |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1383 (setq math-comp-word (if (= (length math-comp-word) 0) c |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1384 (concat math-comp-word c)) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1385 math-comp-pos (+ math-comp-pos (length c)))) |
40785 | 1386 |
1387 ((eq (car c) 'horiz) | |
1388 (while (setq c (cdr c)) | |
1389 (math-comp-to-string-flat-term (car c)))) | |
1390 | |
1391 ((eq (car c) 'set) | |
1392 (if (nth 1 c) | |
1393 (progn | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1394 (setq math-comp-level (1+ math-comp-level)) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1395 (if (>= math-comp-level (length math-comp-buf-string)) |
40785 | 1396 (setq math-comp-buf-string (vconcat math-comp-buf-string |
1397 math-comp-buf-string) | |
1398 math-comp-buf-margin (vconcat math-comp-buf-margin | |
1399 math-comp-buf-margin) | |
1400 math-comp-buf-level (vconcat math-comp-buf-level | |
1401 math-comp-buf-level))) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1402 (aset math-comp-buf-string math-comp-level "") |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1403 (aset math-comp-buf-margin math-comp-level (+ math-comp-pos |
40785 | 1404 (or (nth 2 c) 0))) |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1405 (aset math-comp-buf-level math-comp-level (nth 1 c))))) |
40785 | 1406 |
1407 ((eq (car c) 'break) | |
1408 (if (not calc-line-breaking) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1409 (setq math-comp-buf (concat math-comp-buf math-comp-word) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1410 math-comp-word "") |
40785 | 1411 (let ((i 0) str) |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1412 (if (and (> math-comp-pos math-comp-full-width) |
40785 | 1413 (progn |
1414 (while (progn | |
1415 (setq str (aref math-comp-buf-string i)) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1416 (and (= (length str) 0) (< i math-comp-level))) |
40785 | 1417 (setq i (1+ i))) |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1418 (or (> (length str) 0) (> (length math-comp-buf) 0)))) |
40785 | 1419 (let ((prefix "") mrg wid) |
1420 (setq mrg (aref math-comp-buf-margin i)) | |
1421 (if (> mrg 12) ; indenting too far, go back to far left | |
1422 (let ((j i) (new (if calc-line-numbering 5 1))) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1423 '(while (<= j math-comp-level) |
40785 | 1424 (aset math-comp-buf-margin j |
1425 (+ (aref math-comp-buf-margin j) (- new mrg))) | |
1426 (setq j (1+ j))) | |
1427 (setq mrg new))) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1428 (setq wid (+ (length str) math-comp-margin)) |
40785 | 1429 (and (> (length str) 0) (= (aref str 0) ? ) |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1430 (> (length math-comp-buf) 0) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1431 (let ((k (length math-comp-buf))) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1432 (while (not (= (aref math-comp-buf (setq k (1- k))) ?\n))) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1433 (aset math-comp-buf k ? ) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1434 (if (and (< (1+ k) (length math-comp-buf)) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1435 (= (aref math-comp-buf (1+ k)) ? )) |
40785 | 1436 (progn |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1437 (aset math-comp-buf (1+ k) ?\n) |
40785 | 1438 (setq prefix " ")) |
1439 (setq prefix "\n")))) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1440 (setq math-comp-buf (concat math-comp-buf prefix str "\n" |
40785 | 1441 (make-string mrg ? )) |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1442 math-comp-pos (+ math-comp-pos (- mrg wid)) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1443 math-comp-margin mrg) |
40785 | 1444 (aset math-comp-buf-string i "") |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1445 (while (<= (setq i (1+ i)) math-comp-level) |
40785 | 1446 (if (> (aref math-comp-buf-margin i) wid) |
1447 (aset math-comp-buf-margin i | |
1448 (+ (aref math-comp-buf-margin i) | |
1449 (- mrg wid)))))))) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1450 (if (and (= (nth 1 c) (aref math-comp-buf-level math-comp-level)) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1451 (< math-comp-pos (+ (aref math-comp-buf-margin math-comp-level) 2))) |
40785 | 1452 () ; avoid stupid breaks, e.g., "1 +\n really_long_expr" |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1453 (let ((str (aref math-comp-buf-string math-comp-level))) |
40785 | 1454 (setq str (if (= (length str) 0) |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1455 math-comp-word |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1456 (concat str math-comp-word)) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1457 math-comp-word "") |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1458 (while (< (nth 1 c) (aref math-comp-buf-level math-comp-level)) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1459 (setq math-comp-level (1- math-comp-level)) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1460 (or (= (length (aref math-comp-buf-string math-comp-level)) 0) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1461 (setq str (concat (aref math-comp-buf-string math-comp-level) |
40785 | 1462 str)))) |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1463 (aset math-comp-buf-string math-comp-level str))))) |
40785 | 1464 |
1465 ((eq (car c) 'tag) | |
1466 (cond ((eq (nth 1 c) math-comp-selected) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1467 (let ((math-comp-highlight (not calc-show-selections))) |
40785 | 1468 (math-comp-to-string-flat-term (nth 2 c)))) |
1469 ((eq (nth 1 c) t) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1470 (let ((math-comp-highlight nil)) |
40785 | 1471 (math-comp-to-string-flat-term (nth 2 c)))) |
1472 (t (math-comp-to-string-flat-term (nth 2 c))))) | |
1473 | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1474 (t (math-comp-to-string-flat-term (nth 2 c))))) |
40785 | 1475 |
1476 (defun math-comp-highlight-string (s) | |
1477 (setq s (copy-sequence s)) | |
1478 (let ((i (length s))) | |
1479 (while (>= (setq i (1- i)) 0) | |
1480 (or (memq (aref s i) '(32 ?\n)) | |
1481 (aset s i (if calc-show-selections ?\. ?\#))))) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1482 s) |
40785 | 1483 |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1484 |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1485 ;; The variable math-comp-sel-tag is local to calc-find-selected-part |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1486 ;; in calc-sel.el, but is used by math-comp-sel-flat-term and |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1487 ;; math-comp-add-string-sel, which are called (indirectly) by |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1488 ;; calc-find-selected-part. |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1489 (defvar math-comp-sel-tag) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1490 |
40785 | 1491 (defun math-comp-sel-flat-term (c) |
1492 (cond ((not (consp c)) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1493 (setq math-comp-pos (+ math-comp-pos (length c)))) |
40785 | 1494 ((memq (car c) '(set break))) |
1495 ((eq (car c) 'horiz) | |
1496 (while (and (setq c (cdr c)) (< math-comp-sel-cpos 1000000)) | |
1497 (math-comp-sel-flat-term (car c)))) | |
1498 ((eq (car c) 'tag) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1499 (if (<= math-comp-pos math-comp-sel-cpos) |
40785 | 1500 (progn |
1501 (math-comp-sel-flat-term (nth 2 c)) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1502 (if (> math-comp-pos math-comp-sel-cpos) |
40785 | 1503 (setq math-comp-sel-tag c |
1504 math-comp-sel-cpos 1000000))) | |
1505 (math-comp-sel-flat-term (nth 2 c)))) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1506 (t (math-comp-sel-flat-term (nth 2 c))))) |
40785 | 1507 |
1508 | |
1509 ;;; Simplify a composition to a canonical form consisting of | |
1510 ;;; (vleft n "string" "string" "string" ...) | |
1511 ;;; where 0 <= n < number-of-strings. | |
1512 | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1513 ;; The variables math-comp-base, math-comp-hgt, math-comp-tag, |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1514 ;; math-comp-hpos and math-comp-vpos are local to math-comp-simplify, |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1515 ;; but are used by math-comp-add-string (math-comp-base, math-comp-hgt), |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1516 ;; math-comp-add-string-sel (math-comp-tag) and math-comp-simplify-term |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1517 ;; (math-comp-tag, math-comp-vpos, math-comp-hpos), which are called by |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1518 ;; math-comp-simplify. |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1519 (defvar math-comp-base) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1520 (defvar math-comp-hgt) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1521 (defvar math-comp-tag) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1522 (defvar math-comp-hpos) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1523 (defvar math-comp-vpos) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1524 |
40785 | 1525 (defun math-comp-simplify (c full-width) |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1526 (let ((math-comp-buf (list "")) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1527 (math-comp-base 0) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1528 (math-comp-hgt 1) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1529 (math-comp-hpos 0) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1530 (math-comp-vpos 0) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1531 (math-comp-highlight (and math-comp-selected calc-show-selections)) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1532 (math-comp-tag nil)) |
40785 | 1533 (math-comp-simplify-term c) |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1534 (cons 'vleft (cons math-comp-base math-comp-buf)))) |
40785 | 1535 |
1536 (defun math-comp-add-string (s h v) | |
1537 (and (> (length s) 0) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1538 (let ((vv (+ v math-comp-base))) |
40785 | 1539 (if math-comp-sel-hpos |
1540 (math-comp-add-string-sel h vv (length s) 1) | |
1541 (if (< vv 0) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1542 (setq math-comp-buf (nconc (make-list (- vv) "") math-comp-buf) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1543 math-comp-base (- v) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1544 math-comp-hgt (- math-comp-hgt vv) |
40785 | 1545 vv 0) |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1546 (if (>= vv math-comp-hgt) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1547 (setq math-comp-buf (nconc math-comp-buf |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1548 (make-list (1+ (- vv math-comp-hgt)) "")) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1549 math-comp-hgt (1+ vv)))) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1550 (let ((str (nthcdr vv math-comp-buf))) |
40785 | 1551 (setcar str (concat (car str) |
1552 (make-string (- h (length (car str))) 32) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1553 (if math-comp-highlight |
40785 | 1554 (math-comp-highlight-string s) |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1555 s)))))))) |
40785 | 1556 |
1557 (defun math-comp-add-string-sel (x y w h) | |
1558 (if (and (<= y math-comp-sel-vpos) | |
1559 (> (+ y h) math-comp-sel-vpos) | |
1560 (<= x math-comp-sel-hpos) | |
1561 (> (+ x w) math-comp-sel-hpos)) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1562 (setq math-comp-sel-tag math-comp-tag |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1563 math-comp-sel-vpos 10000))) |
40785 | 1564 |
1565 (defun math-comp-simplify-term (c) | |
1566 (cond ((stringp c) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1567 (math-comp-add-string c math-comp-hpos math-comp-vpos) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1568 (setq math-comp-hpos (+ math-comp-hpos (length c)))) |
40785 | 1569 ((memq (car c) '(set break)) |
1570 nil) | |
1571 ((eq (car c) 'horiz) | |
1572 (while (setq c (cdr c)) | |
1573 (math-comp-simplify-term (car c)))) | |
1574 ((memq (car c) '(vleft vcent vright)) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1575 (let* ((math-comp-vpos (+ (- math-comp-vpos (nth 1 c)) |
40785 | 1576 (1- (math-comp-ascent (nth 2 c))))) |
1577 (widths (mapcar 'math-comp-width (cdr (cdr c)))) | |
1578 (maxwid (apply 'max widths)) | |
1579 (bias (cond ((eq (car c) 'vleft) 0) | |
1580 ((eq (car c) 'vcent) 1) | |
1581 (t 2)))) | |
1582 (setq c (cdr c)) | |
1583 (while (setq c (cdr c)) | |
1584 (if (eq (car-safe (car c)) 'rule) | |
1585 (math-comp-add-string (make-string maxwid (nth 1 (car c))) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1586 math-comp-hpos math-comp-vpos) |
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1587 (let ((math-comp-hpos (+ math-comp-hpos (/ (* bias (- maxwid |
40785 | 1588 (car widths))) |
1589 2)))) | |
1590 (math-comp-simplify-term (car c)))) | |
1591 (and (cdr c) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1592 (setq math-comp-vpos (+ math-comp-vpos |
40785 | 1593 (+ (math-comp-descent (car c)) |
1594 (math-comp-ascent (nth 1 c)))) | |
1595 widths (cdr widths)))) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1596 (setq math-comp-hpos (+ math-comp-hpos maxwid)))) |
40785 | 1597 ((eq (car c) 'supscr) |
1598 (let* ((asc (or 1 (math-comp-ascent (nth 1 c)))) | |
1599 (desc (math-comp-descent (nth 2 c))) | |
1600 (oldh (prog1 | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1601 math-comp-hpos |
40785 | 1602 (math-comp-simplify-term (nth 1 c)))) |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1603 (math-comp-vpos (- math-comp-vpos (+ asc desc)))) |
40785 | 1604 (math-comp-simplify-term (nth 2 c)) |
1605 (if math-comp-sel-hpos | |
1606 (math-comp-add-string-sel oldh | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1607 (- math-comp-vpos |
40785 | 1608 -1 |
1609 (math-comp-ascent (nth 2 c))) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1610 (- math-comp-hpos oldh) |
40785 | 1611 (math-comp-height c))))) |
1612 ((eq (car c) 'subscr) | |
1613 (let* ((asc (math-comp-ascent (nth 2 c))) | |
1614 (desc (math-comp-descent (nth 1 c))) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1615 (oldv math-comp-vpos) |
40785 | 1616 (oldh (prog1 |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1617 math-comp-hpos |
40785 | 1618 (math-comp-simplify-term (nth 1 c)))) |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1619 (math-comp-vpos (+ math-comp-vpos (+ asc desc)))) |
40785 | 1620 (math-comp-simplify-term (nth 2 c)) |
1621 (if math-comp-sel-hpos | |
1622 (math-comp-add-string-sel oldh oldv | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1623 (- math-comp-hpos oldh) |
40785 | 1624 (math-comp-height c))))) |
1625 ((eq (car c) 'tag) | |
1626 (cond ((eq (nth 1 c) math-comp-selected) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1627 (let ((math-comp-highlight (not calc-show-selections))) |
40785 | 1628 (math-comp-simplify-term (nth 2 c)))) |
1629 ((eq (nth 1 c) t) | |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1630 (let ((math-comp-highlight nil)) |
40785 | 1631 (math-comp-simplify-term (nth 2 c)))) |
58465
02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
1632 (t (let ((math-comp-tag c)) |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1633 (math-comp-simplify-term (nth 2 c)))))))) |
40785 | 1634 |
1635 | |
1636 ;;; Measuring a composition. | |
1637 | |
1638 (defun math-comp-first-char (c) | |
1639 (cond ((stringp c) | |
1640 (and (> (length c) 0) | |
1641 (elt c 0))) | |
1642 ((memq (car c) '(horiz subscr supscr)) | |
1643 (while (and (setq c (cdr c)) | |
1644 (math-comp-is-null (car c)))) | |
1645 (and c (math-comp-first-char (car c)))) | |
1646 ((eq (car c) 'tag) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1647 (math-comp-first-char (nth 2 c))))) |
40785 | 1648 |
1649 (defun math-comp-first-string (c) | |
1650 (cond ((stringp c) | |
1651 (and (> (length c) 0) | |
1652 c)) | |
1653 ((eq (car c) 'horiz) | |
1654 (while (and (setq c (cdr c)) | |
1655 (math-comp-is-null (car c)))) | |
1656 (and c (math-comp-first-string (car c)))) | |
1657 ((eq (car c) 'tag) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1658 (math-comp-first-string (nth 2 c))))) |
40785 | 1659 |
1660 (defun math-comp-last-char (c) | |
1661 (cond ((stringp c) | |
1662 (and (> (length c) 0) | |
1663 (elt c (1- (length c))))) | |
1664 ((eq (car c) 'horiz) | |
1665 (let ((c (reverse (cdr c)))) | |
1666 (while (and c (math-comp-is-null (car c))) | |
1667 (setq c (cdr c))) | |
1668 (and c (math-comp-last-char (car c))))) | |
1669 ((eq (car c) 'tag) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1670 (math-comp-last-char (nth 2 c))))) |
40785 | 1671 |
1672 (defun math-comp-is-null (c) | |
1673 (cond ((stringp c) (= (length c) 0)) | |
1674 ((memq (car c) '(horiz subscr supscr)) | |
1675 (while (and (setq c (cdr c)) | |
1676 (math-comp-is-null (car c)))) | |
1677 (null c)) | |
1678 ((eq (car c) 'tag) | |
1679 (math-comp-is-null (nth 2 c))) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1680 ((memq (car c) '(set break)) t))) |
40785 | 1681 |
1682 (defun math-comp-width (c) | |
1683 (cond ((not (consp c)) (length c)) | |
1684 ((memq (car c) '(horiz subscr supscr)) | |
1685 (let ((accum 0)) | |
1686 (while (setq c (cdr c)) | |
1687 (setq accum (+ accum (math-comp-width (car c))))) | |
1688 accum)) | |
1689 ((memq (car c) '(vcent vleft vright)) | |
1690 (setq c (cdr c)) | |
1691 (let ((accum 0)) | |
1692 (while (setq c (cdr c)) | |
1693 (setq accum (max accum (math-comp-width (car c))))) | |
1694 accum)) | |
1695 ((eq (car c) 'tag) | |
1696 (math-comp-width (nth 2 c))) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1697 (t 0))) |
40785 | 1698 |
1699 (defun math-comp-height (c) | |
1700 (if (stringp c) | |
1701 1 | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1702 (+ (math-comp-ascent c) (math-comp-descent c)))) |
40785 | 1703 |
1704 (defun math-comp-ascent (c) | |
1705 (cond ((not (consp c)) 1) | |
1706 ((eq (car c) 'horiz) | |
1707 (let ((accum 0)) | |
1708 (while (setq c (cdr c)) | |
1709 (setq accum (max accum (math-comp-ascent (car c))))) | |
1710 accum)) | |
1711 ((memq (car c) '(vcent vleft vright)) | |
1712 (if (> (nth 1 c) 0) (1+ (nth 1 c)) 1)) | |
1713 ((eq (car c) 'supscr) | |
1714 (max (math-comp-ascent (nth 1 c)) (1+ (math-comp-height (nth 2 c))))) | |
1715 ((eq (car c) 'subscr) | |
1716 (math-comp-ascent (nth 1 c))) | |
1717 ((eq (car c) 'tag) | |
1718 (math-comp-ascent (nth 2 c))) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1719 (t 1))) |
40785 | 1720 |
1721 (defun math-comp-descent (c) | |
1722 (cond ((not (consp c)) 0) | |
1723 ((eq (car c) 'horiz) | |
1724 (let ((accum 0)) | |
1725 (while (setq c (cdr c)) | |
1726 (setq accum (max accum (math-comp-descent (car c))))) | |
1727 accum)) | |
1728 ((memq (car c) '(vcent vleft vright)) | |
1729 (let ((accum (- (nth 1 c)))) | |
1730 (setq c (cdr c)) | |
1731 (while (setq c (cdr c)) | |
1732 (setq accum (+ accum (math-comp-height (car c))))) | |
1733 (max (1- accum) 0))) | |
1734 ((eq (car c) 'supscr) | |
1735 (math-comp-descent (nth 1 c))) | |
1736 ((eq (car c) 'subscr) | |
1737 (+ (math-comp-descent (nth 1 c)) (math-comp-height (nth 2 c)))) | |
1738 ((eq (car c) 'tag) | |
1739 (math-comp-descent (nth 2 c))) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1740 (t 0))) |
40785 | 1741 |
1742 (defun calcFunc-cwidth (a &optional prec) | |
1743 (if (and prec (not (integerp prec))) (math-reject-arg prec 'fixnump)) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1744 (math-comp-width (math-compose-expr a (or prec 0)))) |
40785 | 1745 |
1746 (defun calcFunc-cheight (a &optional prec) | |
1747 (if (and prec (not (integerp prec))) (math-reject-arg prec 'fixnump)) | |
1748 (if (and (memq (car a) '(calcFunc-cvspace calcFunc-ctspace calcFunc-cbspace)) | |
1749 (memq (length a) '(2 3)) | |
1750 (eq (nth 1 a) 0)) | |
1751 0 | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1752 (math-comp-height (math-compose-expr a (or prec 0))))) |
40785 | 1753 |
1754 (defun calcFunc-cascent (a &optional prec) | |
1755 (if (and prec (not (integerp prec))) (math-reject-arg prec 'fixnump)) | |
1756 (if (and (memq (car a) '(calcFunc-cvspace calcFunc-ctspace calcFunc-cbspace)) | |
1757 (memq (length a) '(2 3)) | |
1758 (eq (nth 1 a) 0)) | |
1759 0 | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1760 (math-comp-ascent (math-compose-expr a (or prec 0))))) |
40785 | 1761 |
1762 (defun calcFunc-cdescent (a &optional prec) | |
1763 (if (and prec (not (integerp prec))) (math-reject-arg prec 'fixnump)) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1764 (math-comp-descent (math-compose-expr a (or prec 0)))) |
40785 | 1765 |
1766 | |
1767 ;;; Convert a simplified composition into string form. | |
1768 | |
1769 (defun math-vert-comp-to-string (c) | |
1770 (if (stringp c) | |
1771 c | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1772 (math-vert-comp-to-string-step (cdr (cdr c))))) |
40785 | 1773 |
1774 (defun math-vert-comp-to-string-step (c) | |
1775 (if (cdr c) | |
1776 (concat (car c) "\n" (math-vert-comp-to-string-step (cdr c))) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1777 (car c))) |
40785 | 1778 |
1779 | |
1780 ;;; Convert a composition to a string in "raw" form (for debugging). | |
1781 | |
1782 (defun math-comp-to-string-raw (c indent) | |
1783 (cond ((or (not (consp c)) (eq (car c) 'set)) | |
1784 (prin1-to-string c)) | |
1785 ((null (cdr c)) | |
1786 (concat "(" (symbol-name (car c)) ")")) | |
1787 (t | |
1788 (let ((next-indent (+ indent 2 (length (symbol-name (car c)))))) | |
1789 (concat "(" | |
1790 (symbol-name (car c)) | |
1791 " " | |
1792 (math-comp-to-string-raw (nth 1 c) next-indent) | |
1793 (math-comp-to-string-raw-step (cdr (cdr c)) | |
1794 next-indent) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1795 ")"))))) |
40785 | 1796 |
1797 (defun math-comp-to-string-raw-step (cl indent) | |
1798 (if cl | |
1799 (concat "\n" | |
1800 (make-string indent 32) | |
1801 (math-comp-to-string-raw (car cl) indent) | |
1802 (math-comp-to-string-raw-step (cdr cl) indent)) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1803 "")) |
40785 | 1804 |
58683
1752ff980918
Add a provide statement.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58465
diff
changeset
|
1805 (provide 'calccomp) |
1752ff980918
Add a provide statement.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58465
diff
changeset
|
1806 |
52401 | 1807 ;;; arch-tag: 7c45d10a-a286-4dab-af49-7ae8989fbf78 |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1808 ;;; calccomp.el ends here |