Fix bug #3926: Various limits give UND where they should give IND
[maxima.git] / src / mactex.lisp
blobfdc8d208fedfbfa8c6db8f03226ac5ff3253e925
1 ;;; -*- Mode: Lisp; Package: Maxima; Syntax: Common-Lisp; Base: 10 -*- ;;;;
3 (in-package :maxima)
5 ;; TeX-printing
6 ;; (c) copyright 1987, Richard J. Fateman
7 ;; small corrections and additions: Andrey Grozin, 2001
8 ;; additional additions: Judah Milgram (JM), September 2001
9 ;; additional corrections: Barton Willis (BLW), October 2001
11 ;; Usage: tex(d8,"/tmp/foo.tex"); tex(d10,"/tmp/foo.tex"); ..
12 ;; to append lines d8 and d10 to the tex file. If given only
13 ;; one argument the result goes to standard output.
15 ;; Extract from permission letter to wfs:
16 ;; Date: Sat, 2 Apr 88 18:06:16 PST
17 ;; From: fateman%vangogh.Berkeley.EDU@ucbvax.Berkeley.EDU (Richard Fateman)
18 ;; To: wfs@rascal.ics.UTEXAS.EDU
19 ;; Subject: about tex...
20 ;; You have my permission to put it in NESC or give it to anyone
21 ;; else who might be interested in it....
23 ;; source language:
24 ;; There are changes by wfs to allow use inside MAXIMA which runs
25 ;; in COMMON LISP. For original FRANZ LISP version contact rfw.
27 ;; intended environment: vaxima (Vax or Sun). Parser should be
28 ;; equivalent (in lbp/rbp data) to 1986 NESC Vaxima.
29 ;;;(provide 'tex)
30 ;;;(in-package 'tex)
31 ;;;(export '($tex $texinit))
32 ;;;;; we'd like to just
33 ;;;(import '(user::$bothcases user::lbp user::rbp user::nformat))
34 ;;;(use-package 'user)
36 ;; March, 1987
38 ;; Method:
40 ;; Producing TeX from a macsyma internal expression is done by
41 ;; a reversal of the parsing process. Fundamentally, a
42 ;; traversal of the expression tree is produced by the tex programs,
43 ;; with appropriate substitutions and recognition of the
44 ;; infix / prefix / postfix / matchfix relations on symbols. Various
45 ;; changes are made to this so that TeX will like the results.
46 ;; It is important to understand the binding powers of the operators
47 ;; in Macsyma, in mathematics, and in TeX so that parentheses will
48 ;; be inserted when necessary. Because TeX has different kinds of
49 ;; groupings (e.g. in superscripts, within sqrts), not all
50 ;; parentheses are explicitly need.
52 ;; Instructions:
53 ;; in macsyma, type tex(<expression>); or tex(<label>); or
54 ;; tex(<expr-or-label>, <file-name>); In the case of a label,
55 ;; a left-equation-number will be produced.
56 ;; in case a file-name is supplied, the output will be sent
57 ;; (perhaps appended) to that file.
59 (declare-top (special lop rop $labels $inchar))
61 (defvar *tex-environment-default* '("$$" . "$$"))
63 (defmfun $set_tex_environment_default (env-open env-close)
64 (setq env-open ($sconcat env-open))
65 (setq env-close ($sconcat env-close))
66 (setq *tex-environment-default* `(,env-open . ,env-close))
67 ($get_tex_environment_default))
69 (defmfun $get_tex_environment_default ()
70 `((mlist) ,(car *tex-environment-default*) ,(cdr *tex-environment-default*)))
72 (defmfun $set_tex_environment (x env-open env-close)
73 (setq env-open ($sconcat env-open))
74 (setq env-close ($sconcat env-close))
75 (if (getopr x) (setq x (getopr x)))
76 (setf (get x 'tex-environment) `(,env-open . ,env-close))
77 ($get_tex_environment x))
79 (defmfun $get_tex_environment (x)
80 (if (getopr x) (setq x (getopr x)))
81 (let ((e (get-tex-environment x)))
82 `((mlist) ,(car e) ,(cdr e))))
84 (defun get-tex-environment (x)
85 (cond
86 ((symbolp x)
87 (or (get x 'tex-environment) *tex-environment-default*))
88 ((atom x)
89 *tex-environment-default*)
91 (get-tex-environment (caar x)))))
93 (setf (get 'mdefine 'tex-environment)
94 `(,(format nil "~%\\begin{verbatim}~%") . ,(format nil ";~%\\end{verbatim}~%")))
96 (setf (get 'mdefmacro 'tex-environment)
97 `(,(format nil "~%\\begin{verbatim}~%") . ,(format nil ";~%\\end{verbatim}~%")))
99 (setf (get 'mlabel 'tex-environment)
100 `(,(format nil "~%\\begin{verbatim}~%") . ,(format nil ";~%\\end{verbatim}~%")))
102 ;; top level command the result of tex'ing the expression x.
103 ;; Lots of messing around here to get C-labels verbatim printed
104 ;; and function definitions verbatim "ground"
106 (defmspec $tex(l) ;; mexplabel, and optional filename or stream
107 ;;if filename or stream supplied but 'nil' then return a string
108 (let ((args (cdr l)))
109 (unless (member (length args) '(1 2))
110 (wna-err '$tex))
111 (cond ((and (cdr args) (null (cadr args)))
112 (let ((*standard-output* (make-string-output-stream)))
113 (apply 'tex1 args)
114 (get-output-stream-string *standard-output*)
117 (t (apply 'tex1 args)))))
119 (defun quote-chars (sym ch-str)
120 (let* ((strsym (string sym))
121 (pos (position-if #'(lambda (c) (find c ch-str)) strsym)))
122 (if pos
123 (concatenate 'string (subseq strsym 0 pos) "\\" (subseq strsym pos (1+ pos))
124 (quote-chars (subseq strsym (1+ pos)) ch-str))
125 strsym)))
127 (defun quote-% (sym)
128 (quote-chars sym "$%&_"))
130 (defun tex1 (mexplabel &optional filename-or-stream) ;; mexplabel, and optional filename or stream
131 (prog (mexp texport x y itsalabel need-to-close-texport)
132 (reset-ccol)
133 ;; collect the file-name, if any, and open a port if needed
134 (setq filename-or-stream (meval filename-or-stream))
135 (setq texport
136 (cond
137 ((null filename-or-stream) *standard-output*)
138 ((eq filename-or-stream t) *standard-output*)
139 ((streamp filename-or-stream) filename-or-stream)
141 (setq need-to-close-texport t)
142 (open (namestring (maxima-string filename-or-stream))
143 :direction :output
144 :if-exists :append
145 :if-does-not-exist :create))))
146 ;; go back and analyze the first arg more thoroughly now.
147 ;; do a normal evaluation of the expression in macsyma
148 (setq mexp (meval mexplabel))
149 (cond ((member mexplabel $labels :test #'eq) ; leave it if it is a label
150 (setq mexplabel (concatenate 'string "(" (print-invert-case (stripdollar mexplabel))
151 ")"))
152 (setq itsalabel t))
153 (t (setq mexplabel nil))) ;flush it otherwise
155 ;; maybe it is a function?
156 (cond((symbolp (setq x mexp)) ;;exclude strings, numbers
157 (setq x ($verbify x))
158 (cond ((setq y (mget x 'mexpr))
159 (setq mexp (list '(mdefine) (cons (list x) (cdadr y)) (caddr y))))
160 ((setq y (mget x 'mmacro))
161 (setq mexp (list '(mdefmacro) (cons (list x) (cdadr y)) (caddr y))))
162 ((setq y (mget x 'aexpr))
163 (setq mexp (list '(mdefine) (cons (list x 'array) (cdadr y)) (caddr y)))))))
164 (cond ((and (null(atom mexp))
165 (member (caar mexp) '(mdefine mdefmacro) :test #'eq))
166 (format texport (car (get-tex-environment (caar mexp))))
167 (cond (mexplabel (format texport "~a " mexplabel)))
168 (mgrind mexp texport) ;write expression as string
169 (format texport (cdr (get-tex-environment (caar mexp)))))
170 ((and
171 itsalabel ;; but is it a user-command-label?
172 ;; THE FOLLOWING TESTS SEEM PRETTY STRANGE --
173 ;; WHY CHECK INITIAL SUBSTRING IF SYMBOL IS ON THE $LABELS LIST ??
174 ;; PROBABLY IT IS A HOLDOVER FROM THE DAYS WHEN LABELS WERE C AND D INSTEAD OF %I AND %O
175 (<= (length (string $inchar)) (length (string mexplabel)))
176 (string= (subseq (maybe-invert-string-case (string $inchar)) 1 (length (string $inchar)))
177 (subseq (string mexplabel) 1 (length (string $inchar))))
178 ;; Check to make sure it isn't an outchar in disguise
179 (not
180 (and
181 (<= (length (string $outchar)) (length (string mexplabel)))
182 (string= (subseq (maybe-invert-string-case (string $outchar)) 1 (length (string $outchar)))
183 (subseq (string mexplabel) 1 (length (string $outchar)))))))
184 ;; aha, this is a C-line: do the grinding:
185 (format texport (car (get-tex-environment 'mlabel)))
186 (format texport "~a" mexplabel)
187 (mgrind mexp texport) ;write expression as string
188 (format texport (cdr (get-tex-environment 'mlabel))))
190 (if mexplabel (setq mexplabel (quote-% mexplabel)))
191 ; display the expression for TeX now:
192 (myprinc (car (get-tex-environment mexp)) texport)
193 (mapc #'(lambda (x) (myprinc x texport))
194 ;;initially the left and right contexts are
195 ;; empty lists, and there are implicit parens
196 ;; around the whole expression
197 (tex mexp nil nil 'mparen 'mparen))
198 (cond (mexplabel
199 (format texport "\\leqno{\\tt ~a}" mexplabel)))
200 (format texport (cdr (get-tex-environment mexp)))))
201 (terpri texport)
202 (if need-to-close-texport
203 (close texport))
204 (return mexplabel)))
206 ;;; myprinc is an intelligent low level printing routine. it keeps track of
207 ;;; the size of the output for purposes of allowing the TeX file to
208 ;;; have a reasonable line-line. myprinc will break it at a space
209 ;;; once it crosses a threshold.
210 ;;; this has nothign to do with breaking the resulting equations.
212 ;;- arg: chstr - string or number to princ
213 ;;- scheme: This function keeps track of the current location
214 ;;- on the line of the cursor and makes sure
215 ;;- that a value is all printed on one line (and not divided
216 ;;- by the crazy top level os routines)
218 (let ((ccol 1))
219 (defun reset-ccol () (setq ccol 1))
221 (defun myprinc (chstr &optional (texport nil))
222 (prog (chlst)
223 (cond ((and (> (+ (length (setq chlst (exploden chstr))) ccol) 70.)
224 (or (stringp chstr) (equal chstr '| |)))
225 (terpri texport) ;would have exceeded the line length
226 (setq ccol 1.)
227 (myprinc " " texport))) ; lead off with a space for safetyso we split it up.
228 (do ((ch chlst (cdr ch))
229 (colc ccol (1+ colc)))
230 ((null ch) (setq ccol colc))
231 (write-char (car ch) texport)))))
233 (defun tex (x l r lop rop)
234 ;; x is the expression of interest; l is the list of strings to its
235 ;; left, r to its right. lop and rop are the operators on the left
236 ;; and right of x in the tree, and will determine if parens must
237 ;; be inserted
238 (setq x (nformat x))
239 (cond ((atom x) (tex-atom x l r))
240 ((or (<= (tex-lbp (caar x)) (tex-rbp lop)) (> (tex-lbp rop) (tex-rbp (caar x))))
241 (tex-paren x l r))
242 ;; special check needed because macsyma notates arrays peculiarly
243 ((member 'array (cdar x) :test #'eq) (tex-array x l r))
244 ;; dispatch for object-oriented tex-ifiying
245 ((get (caar x) 'tex) (funcall (get (caar x) 'tex) x l r))
246 (t (tex-function x l r nil))))
248 (defun tex-atom (x l r) ;; atoms: note: can we lose by leaving out {}s ?
249 (append l
250 (list (cond ((numberp x) (texnumformat x))
251 ((and (symbolp x) (or (get x 'texword) (get (get x 'reversealias) 'texword))))
252 ((stringp x)
253 (tex-string (quote-% (if $stringdisp (concatenate 'string "``" x "''") x))))
254 ((characterp x) (tex-char x))
255 ((symbolp x) (tex-stripdollar (or (get x 'reversealias) x)))
257 (let ((x (if (member (marray-type x) '(array hash-table $functional))
258 ($sconcat x)
259 (format nil "~A" x))))
260 ;; Do not apply stringdisp here -- we are outputting a string
261 ;; only because we don't have a better way to handle Lisp arrays.
262 (tex-string (quote-chars x "#$%&_"))))))
265 (defun tex-string (x)
266 (cond ((equal x "") "")
267 ((eql (elt x 0) #\\) x)
268 (t (concatenate 'string "\\mbox{ " x " }"))))
270 (defun tex-char (x)
271 (if (eql x #\|) "\\mbox{\\verb/|/}"
272 (concatenate 'string "\\mbox{\\verb|" (string x) "|}")))
274 ;; Read forms from file F1 and output them to F2
275 (defun tex-forms (f1 f2 &aux tem (eof *mread-eof-obj*))
276 (with-open-file (st f1)
277 (loop while (not (eq (setq tem (mread-raw st eof)) eof))
278 do (tex1 (third tem) f2))))
280 ;; Detect and extract groups of trailing digits, e.g. foo_mm_nn.
281 ;; and then punt foo[mm, nn] to TEX-ARRAY.
282 ;; Otherwise, treat SYM as a simple symbol.
284 (defun tex-stripdollar (sym)
285 (let
286 ((nn-list (extract-trailing-digits (symbol-name sym))))
287 (if nn-list
288 ;; SYM matches foo_mm_nn.
289 (apply #'concatenate 'string (tex-array `((,(intern (first nn-list)) 'array) ,@(rest nn-list)) nil nil))
290 ;; SYM is a simple symbol.
291 (let ((s (maybe-invert-string-case (quote-% (stripdollar sym)))))
292 (if (> (length s) 1)
293 (concatenate 'string "{\\it " s "}")
294 s)))))
296 ;; Given a string foo_mm_nn, return foo, mm, and nn,
297 ;; where mm and nn are integers (not strings of digits).
298 ;; Return NIL if argument doesn't have trailing digits.
299 (defun extract-trailing-digits (s)
300 (let (nn-list)
301 ;; OK (loop while (funcall #.(maxima-nregex::regex-compile "[^_](__*)([0-9][0-9]*)$") s)
302 ;; NOPE (loop while (funcall #.(maxima-nregex::regex-compile "[^0-9_](_*)([0-9][0-9]*)$") s)
303 (loop with nn-string
304 while (or (and
305 (let ((matches (pregexp:pregexp-match-positions
306 '#.(pregexp:pregexp "[^_](__*)([0-9][0-9]*)$")
307 s)))
308 (when matches
309 (let*
310 ((group-_ (elt matches 1))
311 (group-nn (elt matches 2)))
312 (setq nn-string (subseq s (car group-nn) (cdr group-nn)))
313 (setq s (subseq s 0 (car group-_)))))))
314 (and
315 (let ((matches (pregexp:pregexp-match-positions
316 '#.(pregexp:pregexp "[^_]([0-9][0-9]*)$")
317 s)))
318 (when matches
319 (let* ((group-nn (elt matches 1)))
320 (setq nn-string (subseq s (car group-nn) (cdr group-nn)))
321 (setq s (subseq s 0 (car group-nn))))))))
322 do (push (parse-integer nn-string) nn-list))
323 (and nn-list (cons s nn-list))))
325 (defun strcat (&rest args)
326 (apply #'concatenate 'string (mapcar #'string args)))
328 ;; 10/14/87 RJF convert 1.2e20 to 1.2 \cdot 10^{20}
329 ;; 03/30/01 RLT make that 1.2 \times 10^{20}
330 (defun texnumformat(atom)
331 (let (r firstpart exponent)
332 (cond ((integerp atom)
333 (coerce (exploden atom) 'string))
335 (setq r (exploden atom))
336 (setq exponent (member 'e r :test #'string-equal)) ;; is it ddd.ddde+EE
337 (cond
338 ((null exponent)
339 (coerce r 'string))
341 (setq firstpart
342 (nreverse (cdr (member 'e (reverse r) :test #'string-equal))))
343 (strcat (apply #'strcat firstpart )
344 " \\times 10^{"
345 (apply #'strcat (cdr exponent))
346 "}")))))))
348 (defun tex-paren (x l r)
349 (tex x (append l '("\\left(")) (cons "\\right)" r) 'mparen 'mparen))
351 (defun tex-array (x l r)
352 (tex-array-display-indices x l r))
354 (defun tex-array-display-indices (x l r)
355 (let*
356 ((base-symbol (caar x))
357 (indices (cdr x))
358 (display-indices (safe-mget base-symbol 'display-indices)))
359 (if (or (not display-indices) (not (= (length display-indices) (length indices))))
360 ;; Ignore DISPLAY-INDICES if it's empty, or nonempty and not the same size as INDICES.
361 (tex-array-simple x l r)
362 (let
363 ((pre-subscripts (extract-indices indices display-indices '$presubscript))
364 (pre-superscripts (extract-indices indices display-indices '$presuperscript))
365 (post-subscripts (extract-indices indices display-indices '$postsubscript))
366 (post-superscripts (extract-indices indices display-indices '$postsuperscript)))
367 (when (or pre-subscripts pre-superscripts)
368 (setq l (append l
369 (list "{}")
370 (if pre-subscripts (cons "_{" (tex-list pre-subscripts nil (list "}") ",")))
371 (if pre-superscripts (cons "^{" (tex-list pre-superscripts nil (list "}") ","))))))
372 (when (or post-subscripts post-superscripts)
373 (setq r (append (if post-subscripts (cons "_{" (tex-list post-subscripts nil (list "}") ",")))
374 (if post-superscripts (cons "^{" (tex-list post-superscripts nil (list "}") ","))) r)))
375 (tex-atom base-symbol l r)))))
377 (defun tex-array-simple (x l r)
378 (let ((f))
379 ;; I believe this test always fails; TEX-MQAPPLY calls TEX-ARRAY w/ X = second argument of MQAPPLY.
380 (if (eq 'mqapply (caar x))
381 (setq f (cadr x)
382 x (cdr x)
383 l (tex f (append l (list "\\left(")) (list "\\right)") 'mparen 'mparen))
384 (setq f (caar x)
385 l (tex f l nil lop 'mfunction)))
386 (setq
387 r (nconc (tex-list (cdr x) nil (list "}") ",") r))
388 (nconc l (list "_{") r )))
391 ;; we could patch this so sin x rather than sin(x), but instead we made sin a prefix
392 ;; operator
394 (defun tex-function (x l r op) op
395 (setq l (tex (caar x) l nil 'mparen 'mparen)
396 r (tex (cons '(mprogn) (cdr x)) nil r 'mparen 'mparen))
397 (nconc l r))
399 ;; set up a list , separated by symbols (, * ...) and then tack on the
400 ;; ending item (e.g. "]" or perhaps ")"
402 (defun tex-list (x l r sym)
403 (if (null x) r
404 (do ((nl))
405 ((null (cdr x))
406 (setq nl (nconc nl (tex (car x) l r 'mparen 'mparen)))
408 (setq nl (nconc nl (tex (car x) l (list sym) 'mparen 'mparen))
409 x (cdr x)
410 l nil))))
412 (defun tex-prefix (x l r)
413 (tex (cadr x) (append l (texsym (caar x))) r (caar x) rop))
415 (defun tex-infix (x l r)
416 (twoargcheck x)
417 (setq l (tex (cadr x) l nil lop (caar x)))
418 (tex (caddr x) (append l (texsym (caar x))) r (caar x) rop))
420 (defun tex-postfix (x l r)
421 (tex (cadr x) l (append (texsym (caar x)) r) lop (caar x)))
423 (defun tex-nary (x l r)
424 (let* ((op (caar x)) (sym (texsym op)) (y (cdr x)) (ext-lop lop) (ext-rop rop))
425 (cond ((null y) (tex-function x l r t)) ; this should not happen
426 ((null (cdr y)) (tex-function x l r t)) ; this should not happen, too
427 (t (do ((nl) (lop ext-lop op) (rop op (if (null (cdr y)) ext-rop op)))
428 ((null (cdr y)) (setq nl (append nl (tex (car y) l r lop rop))) nl)
429 (setq nl (append nl (tex (car y) l sym lop rop))
430 y (cdr y)
431 l nil))))))
433 (defun tex-nofix (x l r) (tex (car (texsym (caar x))) l r (caar x) rop))
435 (defun tex-matchfix (x l r)
436 (setq l (append l (car (texsym (caar x))))
437 ;; car of texsym of a matchfix operator is the lead op
438 r (append (list (nth 1 (texsym (caar x)))) r)
439 ;; cdr is the trailing op
440 x (tex-list (cdr x) nil r (or (nth 2 (texsym (caar x))) " , ")))
441 (append l x))
443 (defun texsym (x)
444 (or (get x 'texsym) (get x 'strsym)
445 (get x 'dissym)
446 (stripdollar x)))
448 (defun texword (x)
449 (or (get x 'texword)
450 (stripdollar x)))
452 (defprop bigfloat tex-bigfloat tex)
454 ; For 1.2345b678, generate TeX output 1.2345_B \times 10^{678} .
455 ; If the exponent is 0, then ... \times 10^{0} is generated
456 ; (no attempt to strip off zero exponent).
458 (defun tex-bigfloat (x l r)
459 (let ((formatted (fpformat x)))
460 ; There should always be a '|b| or '|B| in the FPFORMAT output.
461 ; Play it safe -- check anyway.
462 (if (or (find '|b| formatted) (find '|B| formatted))
463 (let*
464 ((spell-out-expt
465 (append
466 (apply #'append
467 (mapcar
468 #'(lambda (e) (if (or (eq e '|b|) (eq e '|B|))
469 '("_B" | | "\\times" | | "10^{")
470 (list e)))
471 formatted))
472 '(|}|))))
473 (append l spell-out-expt r))
474 (append l formatted r))))
476 (defprop mprog "\\mathbf{block}\\;" texword)
477 (defprop %erf "\\mathrm{erf}" texword)
478 (defprop $erf "\\mathrm{erf}" texword) ;; etc for multicharacter names
479 (defprop $true "\\mathbf{true}" texword)
480 (defprop $false "\\mathbf{false}" texword)
481 (defprop $done "\\mathbf{done}" texword)
483 (defprop mprogn tex-matchfix tex) ;; mprogn is (<progstmnt>, ...)
484 (defprop mprogn (("\\left(") "\\right)") texsym)
486 (defprop mlist tex-matchfix tex)
487 (defprop mlist (("\\left[ ")" \\right] ") texsym)
488 (setf (get '%mlist 'tex) (get 'mlist 'tex))
489 (setf (get '%mlist 'texsym) (get 'mlist 'texsym))
491 ;;absolute value
492 (defprop mabs tex-matchfix tex)
493 (defprop mabs (("\\left| ")"\\right| ") texsym)
495 (defprop mqapply tex-mqapply tex)
497 (defun tex-mqapply (x l r)
498 (setq l (tex (cadr x) l (list "(" ) lop 'mfunction)
499 r (tex-list (cddr x) nil (cons ")" r) ","))
500 (append l r)) ;; fixed 9/24/87 RJF
502 (defprop $%i "i" texword)
503 (defprop $%e "e" texword)
504 (defprop $inf "\\infty " texword)
505 (defprop $minf " -\\infty " texword)
506 (defprop %laplace "\\mathcal{L}" texword)
508 (defprop $alpha "\\alpha" texword)
509 (defprop $beta "\\beta" texword)
510 (defprop $gamma "\\gamma" texword)
511 (defprop %gamma "\\gamma" texword)
513 (defprop %gamma tex-gamma tex)
514 (defun tex-gamma (x l r)
515 (tex (cadr x) (append l '("\\Gamma\\left(")) (append '("\\right)") r) 'mparen 'mparen))
517 (defprop $%gamma "\\gamma" texword)
518 (defprop %gamma_incomplete "\\Gamma" texword)
519 (defprop %gamma_incomplete_regularized "Q" texword)
520 (defprop %gamma_incomplete_generalized "\\Gamma" texword)
521 (defprop $gamma_incomplete_lower "\\gamma" texword)
522 (defprop $delta "\\delta" texword)
523 (defprop $epsilon "\\varepsilon" texword)
524 (defprop $zeta "\\zeta" texword)
525 (defprop $eta "\\eta" texword)
526 (defprop $theta "\\vartheta" texword)
527 (defprop $iota "\\iota" texword)
528 (defprop $kappa "\\kappa" texword)
529 (defprop lambda "\\lambda" texword)
530 (defprop $lambda "\\lambda" texword)
531 (defprop $mu "\\mu" texword)
532 (defprop $nu "\\nu" texword)
533 (defprop $xi "\\xi" texword)
534 (defprop $omicron " o" texword)
535 (defprop $%pi "\\pi" texword)
536 (defprop $pi "\\pi" texword)
537 (defprop $rho "\\rho" texword)
538 (defprop $sigma "\\sigma" texword)
539 (defprop $tau "\\tau" texword)
540 (defprop $upsilon "\\upsilon" texword)
541 (defprop $phi "\\varphi" texword)
542 (defprop $chi "\\chi" texword)
543 (defprop $psi "\\psi" texword)
544 (defprop $omega "\\omega" texword)
546 (defprop |$Alpha| "{\\rm A}" texword)
547 (defprop |$Beta| "{\\rm B}" texword)
548 (defprop |$Gamma| "\\Gamma" texword)
549 (defprop |$Delta| "\\Delta" texword)
550 (defprop |$Epsilon| "{\\rm E}" texword)
551 (defprop |$Zeta| "{\\rm Z}" texword)
552 (defprop |$Eta| "{\\rm H}" texword)
553 (defprop |$Theta| "\\Theta" texword)
554 (defprop |$Iota| "{\\rm I}" texword)
555 (defprop |$Kappa| "{\\rm K}" texword)
556 (defprop |$Lambda| "\\Lambda" texword)
557 (defprop |$Mu| "{\\rm M}" texword)
558 (defprop |$Nu| "{\\rm N}" texword)
559 (defprop |$Xi| "\\Xi" texword)
560 (defprop |$Omicron| "{\\rm O}" texword)
561 (defprop |$Pi| "\\Pi" texword)
562 (defprop |$Rho| "{\\rm P}" texword)
563 (defprop |$Sigma| "\\Sigma" texword)
564 (defprop |$Tau| "{\\rm T}" texword)
565 (defprop |$Upsilon| "\\Upsilon" texword)
566 (defprop |$Phi| "\\Phi" texword)
567 (defprop |$Chi| "{\\rm X}" texword)
568 (defprop |$Psi| "\\Psi" texword)
569 (defprop |$Omega| "\\Omega" texword)
571 (defprop mquote tex-prefix tex)
572 (defprop mquote ("\\mbox{{}'{}}") texsym)
574 (defprop msetq tex-infix tex)
575 (defprop msetq (":") texsym)
577 (defprop mset tex-infix tex)
578 (defprop mset ("::") texsym)
580 (defprop mdefine tex-infix tex)
581 (defprop mdefine (":=") texsym)
583 (defprop mdefmacro tex-infix tex)
584 (defprop mdefmacro ("::=") texsym)
586 (defprop marrow tex-infix tex)
587 (defprop marrow ("\\rightarrow ") texsym)
589 (defprop mfactorial tex-postfix tex)
590 (defprop mfactorial ("!") texsym)
592 (defprop mexpt tex-mexpt tex)
594 (defprop %sum 110. tex-rbp) ;; added by BLW, 1 Oct 2001
595 (defprop %product 115. tex-rbp) ;; added by BLW, 1 Oct 2001
597 ;; If the number contains a exponent marker when printed, we need to
598 ;; put parens around it.
599 (defun numneedsparen (number)
600 (unless (integerp number)
601 (let ((r (exploden number)))
602 (member 'e r :test #'string-equal))))
604 (defvar *tex-mexpt-trig-like-fns* '(%sin %cos %tan %csc %sec %cot %sinh %cosh %tanh %asin %acos %atan %asinh %acosh %atanh))
605 (defun tex-mexpt-trig-like-fn-p (f)
606 (member f *tex-mexpt-trig-like-fns*))
607 (defun maybe-tex-mexpt-trig-like (x l r)
608 ;; here is where we have to check for f(x)^b to be displayed
609 ;; as f^b(x), as is the case for sin(x)^2 .
610 ;; which should be sin^2 x rather than (sin x)^2 or (sin(x))^2.
611 ;; yet we must not display (a+b)^2 as +^2(a,b)...
612 ;; or (sin(x))^(-1) as sin^(-1)x, which would be arcsine x
613 (let*
614 ((fx (cadr x)) ; this is f(x)
615 (f (and (not (atom fx)) (atom (caar fx)) (caar fx))) ; this is f [or nil]
616 (bascdr (and f (cdr fx))) ; this is (x) [maybe (x,y..), or nil]
617 (expon (caddr x)) ;; this is the exponent
618 (doit (and
619 f ; there is such a function
620 (tex-mexpt-trig-like-fn-p f) ; f is trig-like
621 ;; I THINK THIS NEXT TEST IS UNNECESSARY BECAUSE IF IT PASSES THE PRECEDING TEST, IT IS ACCEPTABLE. REVISIT.
622 (member (get-first-char f) '(#\% #\$) :test #'char=) ;; insist it is a % or $ function
623 (not (member 'array (cdar fx) :test #'eq)) ; fix for x[i]^2
624 ;; I THINK THIS NEXT TEST IS UNNECESSARY BECAUSE NFORMAT CHANGES (...)^-1 TO 1/(...) AND (...)^(1/2) TO SQRT(...). REVISIT.
625 (or (and (atom expon) (not (numberp expon))) ; f(x)^y is ok
626 (and (atom expon) (numberp expon) (> expon 0))))))
627 ; f(x)^3 is ok, but not f(x)^-1, which could
628 ; inverse of f, if written f^-1 x
629 ; what else? f(x)^(1/2) is sqrt(f(x)), ??
630 (cond (doit
631 (setq l (tex `((mexpt) ,f ,expon) l nil 'mparen 'mparen))
632 (if (and (null (cdr bascdr))
633 (eq (get f 'tex) 'tex-prefix))
634 (setq r (tex (car bascdr) nil r f 'mparen))
635 (setq r (tex (cons '(mprogn) bascdr) nil r 'mparen 'mparen)))
636 (append l r))
637 (t nil))) ; won't doit. fall through
640 ;; insert left-angle-brackets for mncexpt. a^<n> is how a^^n looks.
641 (defun tex-mexpt (x l r)
642 (let((nc (eq (caar x) 'mncexpt))) ; true if a^^b rather than a^b
643 (cond ;; this whole clause
644 ;; should be deleted if this hack is unwanted and/or the
645 ;; time it takes is of concern.
646 ;; it shouldn't be too expensive.
647 ((and (eq (caar x) 'mexpt) ; don't do this hack for mncexpt
648 (maybe-tex-mexpt-trig-like x l r))) ; fall through if f is not trig-like
649 (t (setq l (cond ((or ($bfloatp (cadr x))
650 (and (numberp (cadr x)) (numneedsparen (cadr x))))
651 ; ACTUALLY THIS TREATMENT IS NEEDED WHENEVER (CAAR X) HAS GREATER BINDING POWER THAN MTIMES ...
652 (tex (cadr x) (append l '("\\left(")) '("\\right)") lop (caar x)))
653 (t (tex (cadr x) l nil lop (caar x))))
654 r (if (mmminusp (setq x (nformat (caddr x))))
655 ;; the change in base-line makes parens unnecessary
656 (if nc
657 (tex (cadr x) '("^ {-\\langle ") (cons "\\rangle }" r) 'mparen 'mparen)
658 (tex (cadr x) '("^ {- ") (cons " }" r) 'mminus 'mparen))
659 (if nc
660 (tex x (list "^{\\langle ") (cons "\\rangle}" r) 'mparen 'mparen)
661 (if (and (integerp x) (< x 10))
662 (tex x (list "^")(cons "" r) 'mparen 'mparen)
663 (tex x (list "^{")(cons "}" r) 'mparen 'mparen)))))
664 (append l r)))))
666 (defprop mncexpt tex-mexpt tex)
668 (defprop mnctimes tex-nary tex)
669 (defprop mnctimes ("\\cdot ") texsym)
671 (defprop mtimes tex-nary tex)
672 (defprop mtimes ("\\,") texsym)
674 (defprop %sqrt tex-sqrt tex)
676 (defun tex-sqrt(x l r)
677 ;; format as \\sqrt { } assuming implicit parens for sqr grouping
678 (tex (cadr x) (append l '("\\sqrt{")) (append '("}") r) 'mparen 'mparen))
680 ;; macsyma doesn't know about cube (or nth) roots,
681 ;; but if it did, this is what it would look like.
682 (defprop $cubrt tex-cubrt tex)
684 (defun tex-cubrt (x l r)
685 (tex (cadr x) (append l '("\\root 3 \\of{")) (append '("}") r) 'mparen 'mparen))
687 (defprop mquotient tex-mquotient tex)
688 (defprop mquotient ("\\over") texsym)
690 (defun tex-mquotient (x l r)
691 (twoargcheck x)
692 (setq l (tex (cadr x) (append l '("{{")) nil 'mparen 'mparen)
693 ;the divide bar groups things
694 r (tex (caddr x) (list "}\\over{") (append '("}}")r) 'mparen 'mparen))
695 (append l r))
697 (defprop $matrix tex-matrix tex)
699 ;; Tex dialects either offer a \pmatrix command or a pmatrix environment
700 ;; so we let the TeX decide which one to use.
701 (defun tex-matrix(x l r) ;;matrix looks like ((mmatrix)((mlist) a b) ...)
702 (append l `("\\ifx\\endpmatrix\\undefined\\pmatrix{\\else\\begin{pmatrix}\\fi ")
703 (mapcan #'(lambda(y)
704 (tex-list (cdr y) nil (list "\\cr ") "&"))
705 (cdr x))
706 '("\\ifx\\endpmatrix\\undefined}\\else\\end{pmatrix}\\fi ") r))
708 ;; macsyma sum or prod is over integer range, not low <= index <= high
709 ;; TeX is lots more flexible .. but
711 (defprop %sum tex-sum tex)
712 (defprop %lsum tex-lsum tex)
713 (defprop %product tex-sum tex)
715 ;; easily extended to union, intersect, otherops
717 (defun tex-lsum(x l r)
718 (let ((op (cond ((eq (caar x) '%lsum) "\\sum_{")
719 ;; extend here
721 ;; gotta be one of those above
722 ;; 4th arg of tex is changed from mparen to (caar x)
723 ;; to reflect the operator preceedance correctly.
724 ;; This change improves the how to put paren.
725 (s1 (tex (cadr x) nil nil (caar x) rop)) ;; summand
726 (index ;; "index = lowerlimit"
727 (tex `((min simp) , (caddr x), (cadddr x)) nil nil 'mparen 'mparen)))
728 (append l `( ,op ,@index "}}{" ,@s1 "}") r)))
730 (defun tex-sum(x l r)
731 (let ((op (cond ((eq (caar x) '%sum) "\\sum_{")
732 ((eq (caar x) '%product) "\\prod_{")
733 ;; extend here
735 ;; gotta be one of those above
736 ;; 4th arg of tex is changed from mparen to (caar x)
737 ;; to reflect the operator preceedance correctly.
738 ;; This change improves the how to put paren.
739 (s1 (tex (cadr x) nil nil (caar x) rop)) ;; summand
740 (index ;; "index = lowerlimit"
741 (tex `((mequal simp) ,(caddr x),(cadddr x)) nil nil 'mparen 'mparen))
742 (toplim (tex (car(cddddr x)) nil nil 'mparen 'mparen)))
743 (append l `( ,op ,@index "}^{" ,@toplim "}{" ,@s1 "}") r)))
745 (defprop %integrate tex-int tex)
746 (defun tex-int (x l r)
747 (let ((s1 (tex (cadr x) nil nil 'mparen 'mparen)) ;;integrand delims / & d
748 (var (tex (caddr x) nil nil 'mparen rop))) ;; variable
749 (cond((= (length x) 3)
750 (append l `("\\int {" ,@s1 "}{\\;d" ,@var "}") r))
751 (t ;; presumably length 5
752 (let ((low (tex (nth 3 x) nil nil 'mparen 'mparen))
753 ;; 1st item is 0
754 (hi (tex (nth 4 x) nil nil 'mparen 'mparen)))
755 (append l `("\\int_{" ,@low "}^{" ,@hi "}{" ,@s1 "\\;d" ,@var "}") r))))))
757 (defprop %limit tex-limit tex)
759 (defun tex-limit (x l r)
760 (let*
761 ;; limit function
762 ((s1 (tex (cadr x) nil nil 'mparen rop))
763 (direction (fifth x))
764 ;; the thing underneath "limit"
765 (subfun
766 (subst (or (and (eq direction '$plus) "\\downarrow ")
767 (and (eq direction '$minus) "\\uparrow ")
768 "\\rightarrow ")
770 (tex `((mequal simp) ,(caddr x),(cadddr x))
771 nil nil 'mparen 'mparen))))
772 (append l `("\\lim_{" ,@subfun "}{" ,@s1 "}") r)))
774 (defprop %at tex-at tex)
776 ;; e.g. at(diff(f(x)),x=a)
777 (defun tex-at (x l r)
778 (let ((s1 (tex (cadr x) nil nil lop rop))
779 (sub (tex (caddr x) nil nil 'mparen 'mparen)))
780 (append l '("\\left.") s1 '("\\right|_{") sub '("}") r)))
782 (defprop mbox tex-mbox tex)
784 ;; \boxed is defined in amsmath.sty,
785 ;; \newcommand{\boxed}[1]{\fbox{\m@th$\displaystyle#1$}}
787 (defun tex-mbox (x l r)
788 (append l '("\\boxed{") (tex (cadr x) nil nil 'mparen 'mparen) '("}") r))
790 (defprop mlabox tex-mlabox tex)
792 (defun tex-mlabox (x l r)
793 (append l '("\\stackrel{") (tex (caddr x) nil nil 'mparen 'mparen)
794 '("}{\\boxed{") (tex (cadr x) nil nil 'mparen 'mparen) '("}}") r))
796 ;;binomial coefficients
798 (defprop %binomial tex-choose tex)
800 (defun tex-choose (x l r)
801 (append l
802 '("{{")
803 (tex (cadr x) nil nil 'mparen 'mparen)
804 '("}\\choose{")
805 (tex (caddr x) nil nil 'mparen 'mparen)
806 '("}}")
809 (defprop rat tex-rat tex)
810 (defun tex-rat(x l r) (tex-mquotient x l r))
812 (defprop mplus tex-mplus tex)
814 (defun tex-mplus (x l r)
815 ;(declare (fixnum w))
816 (cond ((member 'trunc (car x) :test #'eq) (setq r (cons "+\\cdots " r))))
817 (cond ((null (cddr x))
818 (if (null (cdr x))
819 (tex-function x l r t)
820 (tex (cadr x) (cons "+" l) r 'mplus rop)))
821 (t (setq l (tex (cadr x) l nil lop 'mplus)
822 x (cddr x))
823 (do ((nl l) (dissym))
824 ((null (cdr x))
825 (if (mmminusp (car x)) (setq l (cadar x) dissym (list "-"))
826 (setq l (car x) dissym (list "+")))
827 (setq r (tex l dissym r 'mplus rop))
828 (append nl r))
829 (if (mmminusp (car x)) (setq l (cadar x) dissym (list "-"))
830 (setq l (car x) dissym (list "+")))
831 (setq nl (append nl (tex l dissym nil 'mplus 'mplus))
832 x (cdr x))))))
834 (defprop mminus tex-prefix tex)
835 (defprop mminus ("-") texsym)
837 ;; MIN = "Maxima in", apparently -- not to be confused with the least value of a set.
838 ;; MIN is not known to the parser, although it seems stuff like "x in S" could make use of MIN.
840 (defprop min tex-infix tex)
841 (defprop min ("\\in{") texsym)
842 (defprop min 80. tex-lbp)
843 (defprop min 80. tex-rbp)
845 (defprop mequal tex-infix tex)
846 (defprop mequal (=) texsym)
848 (defprop mnotequal tex-infix tex)
849 (defprop mnotequal ("\\neq ") texsym)
851 (defprop mgreaterp tex-infix tex)
852 (defprop mgreaterp (>) texsym)
854 (defprop mgeqp tex-infix tex)
855 (defprop mgeqp ("\\geq ") texsym)
857 (defprop mlessp tex-infix tex)
858 (defprop mlessp (<) texsym)
860 (defprop mleqp tex-infix tex)
861 (defprop mleqp ("\\leq ") texsym)
863 (defprop mnot tex-prefix tex)
864 (defprop mnot ("\\neg ") texsym)
866 (defprop mand tex-nary tex)
867 (defprop mand ("\\land ") texsym)
869 (defprop mor tex-nary tex)
870 (defprop mor ("\\lor ") texsym)
872 ;; make sin(x) display as sin x , but sin(x+y) as sin(x+y)
873 ;; etc
875 (defun tex-setup (x)
876 (let((a (car x))
877 (b (cadr x)))
878 (setf (get a 'tex) 'tex-prefix)
879 (setf (get a 'texword) b) ;This means "sin" will always be roman
880 (setf (get a 'texsym) (list b))
881 (setf (get a 'tex-rbp) 130)))
884 ;; I WONDER IF ALL BUILT-IN FUNCTIONS SHOULD BE SET IN ROMAN TYPE
885 (defprop $atan2 "{\\rm atan2}" texword)
887 ;; JM 09/01 expand and re-order to follow table of "log-like" functions,
888 ;; see table in Lamport, 2nd edition, 1994, p. 44, table 3.9.
889 ;; I don't know if these are Latex-specific so you may have to define
890 ;; them if you use plain Tex.
892 (mapc #'tex-setup
894 (%acos "\\arccos ")
895 (%asin "\\arcsin ")
896 (%atan "\\arctan ")
898 ; Latex's arg(x) is ... ?
899 (%cos "\\cos ")
900 (%cosh "\\cosh ")
901 (%cot "\\cot ")
902 (%coth "\\coth ")
903 (%csc "\\csc ")
904 ; Latex's "deg" is ... ?
905 (%determinant "\\det ")
906 (%dim "\\dim ")
907 (%exp "\\exp ")
908 (%gcd "\\gcd ")
909 ; Latex's "hom" is ... ?
910 (%inf "\\inf ") ; many will prefer "\\infty". Hmmm.
911 ; Latex's "ker" is ... ?
912 ; Latex's "lg" is ... ?
913 ; lim is handled by tex-limit.
914 ; Latex's "liminf" ... ?
915 ; Latex's "limsup" ... ?
916 (%ln "\\ln ")
917 (%log "\\log ")
918 (%max "\\max ")
919 (%min "\\min ")
920 ; Latex's "Pr" ... ?
921 (%sec "\\sec ")
922 (%sin "\\sin ")
923 (%sinh "\\sinh ")
924 ; Latex's "sup" ... ?
925 (%tan "\\tan ")
926 (%tanh "\\tanh ")
927 ;; (%erf "{\\rm erf}") this would tend to set erf(x) as erf x. Unusual
928 ;(%laplace "{\\cal L}")
930 ; Maxima built-in functions which do not have corresponding TeX symbols.
932 (%asec "{\\rm arcsec}\\; ")
933 (%acsc "{\\rm arccsc}\\; ")
934 (%acot "{\\rm arccot}\\; ")
936 (%sech "{\\rm sech}\\; ")
937 (%csch "{\\rm csch}\\; ")
939 (%asinh "{\\rm asinh}\\; ")
940 (%acosh "{\\rm acosh}\\; ")
941 (%atanh "{\\rm atanh}\\; ")
943 (%asech "{\\rm asech}\\; ")
944 (%acsch "{\\rm acsch}\\; ")
945 (%acoth "{\\rm acoth}\\; ")
947 )) ;; etc
949 (defprop mcond tex-mcond tex)
950 (defprop %mcond tex-mcond tex)
952 (defprop %del tex-prefix tex)
953 (defprop %del ("d") texsym)
955 (defprop %derivative tex-derivative tex)
956 (defun tex-derivative (x l r)
957 (tex (if $derivabbrev
958 (tex-dabbrev x)
959 (tex-d x '$d)) l r lop rop ))
961 (defun tex-d(x dsym) ;dsym should be $d or "$\\partial"
962 ;; format the macsyma derivative form so it looks
963 ;; sort of like a quotient times the deriva-dand.
964 (let*
965 ((arg (cadr x)) ;; the function being differentiated
966 (difflist (cddr x)) ;; list of derivs e.g. (x 1 y 2)
967 (ords (odds difflist 0)) ;; e.g. (1 2)
968 (vars (odds difflist 1)) ;; e.g. (x y)
969 (numer `((mexpt) ,dsym ((mplus) ,@ords))) ; d^n numerator
970 (denom (cons '(mtimes)
971 (mapcan #'(lambda(b e)
972 `(,dsym ,(simplifya `((mexpt) ,b ,e) nil)))
973 vars ords))))
974 `((mtimes)
975 ((mquotient) ,(simplifya numer nil) ,denom)
976 ,arg)))
978 (defun tex-dabbrev (x)
979 ;; Format diff(f,x,1,y,1) so that it looks like
980 ;; f
981 ;; x y
982 (let*
983 ((arg (cadr x)) ;; the function being differentiated
984 (difflist (cddr x)) ;; list of derivs e.g. (x 1 y 2)
985 (ords (odds difflist 0)) ;; e.g. (1 2)
986 (vars (odds difflist 1))) ;; e.g. (x y)
987 (append
988 (if (symbolp arg)
989 `((,arg array))
990 `((mqapply array) ,arg))
991 (if (and (= (length vars) 1)
992 (= (car ords) 1))
993 vars
994 `(((mtimes) ,@(mapcan #'(lambda (var ord)
995 (make-list ord :initial-element var))
996 vars ords)))))))
998 (defun odds (list c)
999 (ecase c
1000 (1 (loop for e in list by #'cddr collect e)) ;; get the odd terms (first, third...)
1001 (0 (loop for e in (cdr list) by #'cddr collect e)))) ;; get the (second, fourth ... ) element
1003 ;; The format of MCOND expressions is documented above the definition
1004 ;; of DIM-MCOND in displa.lisp. Here are some examples:
1006 ;; ((%mcond) $a $b t nil) <==> 'if a then b
1007 ;; ((%mcond) $a $b t $d) <==> 'if a then b else d
1008 ;; ((%mcond) $a $b $c nil t nil) <==> 'if a then b elseif c then false
1009 ;; ((%mcond) $a $b $c $d t nil) <==> 'if a then b elseif c then d
1010 ;; ((%mcond) $a $b $c $d t $f) <==> 'if a then b elseif c then d else f
1012 ;; Note that DIM-MCOND omits display of the final "else" in three
1013 ;; cases illustrated below, so we do the same here:
1015 ;; ((%mcond) $a $b $c $d t $false) <==> '(if a then b elseif c then d)
1016 ;; ((%mcond) $a $b $c $d t nil) <==> 'if a then b elseif c then d
1017 ;; ((%mcond) $a $b $c $d) ==> 'if a then b elseif c then d
1019 ;; The first two cases occur in practice, as can be seen by evaluating
1020 ;; ?print('(if a then b)) and ?print(if a then b). The parser
1021 ;; produces the first case, which is transformed into the second case
1022 ;; during evaluation. The third case is handled equivalently by the
1023 ;; evaluator and DIM-MCOND, and might plausibly be created by some
1024 ;; code, so we handle it here as well.
1026 ;; The use of '$false (instead of nil) may be a hack that is no longer
1027 ;; needed. For more information on this, search for $false in
1028 ;; PARSE-CONDITION of nparse.lisp and DIM-MCOND of displa.lisp. Also
1029 ;; see the mailing list thread with subject "Bugs in tex-mcond" which
1030 ;; took place in January 2011. -MHW
1032 (defun tex-mcond (x l r)
1033 (labels
1034 ((recurse (x l)
1035 (append
1036 (tex (car x) l '("\\;\\mathbf{then}\\;") 'mparen 'mparen)
1037 (cond ((member (cddr x) '(() (t nil) (t $false)) :test #'equal)
1038 (tex (second x) nil r 'mcond rop))
1039 ((and (eq (third x) t) (null (nthcdr 4 x)))
1040 (append
1041 (tex (second x) nil nil 'mparen 'mparen)
1042 (tex (fourth x) '("\\;\\mathbf{else}\\;") r 'mcond rop)))
1043 (t (append
1044 (tex (second x) nil nil 'mparen 'mparen)
1045 (recurse (cddr x) '("\\;\\mathbf{elseif}\\;"))))))))
1046 (append l (recurse (cdr x) '("\\mathbf{if}\\;")))))
1048 (defprop mdo tex-mdo tex)
1049 (defprop mdoin tex-mdoin tex)
1051 (defprop %mdo tex-mdo tex)
1052 (defprop %mdoin tex-mdoin tex)
1054 (defun tex-lbp(x)(cond((get x 'tex-lbp))(t(lbp x))))
1055 (defun tex-rbp(x)(cond((get x 'tex-rbp))(t(rbp x))))
1057 ;; these aren't quite right
1059 (defun tex-mdo (x l r)
1060 (tex-list (texmdo x) l r "\\;"))
1062 (defun tex-mdoin (x l r)
1063 (tex-list (texmdoin x) l r "\\;"))
1065 (defun texmdo (x)
1066 (nconc (cond ((second x) `("\\mathbf{for}" ,(second x))))
1067 (cond ((equal 1 (third x)) nil)
1068 ((third x) `("\\mathbf{from}" ,(third x))))
1069 (cond ((equal 1 (fourth x)) nil)
1070 ((fourth x) `("\\mathbf{step}" ,(fourth x)))
1071 ((fifth x) `("\\mathbf{next}" ,(fifth x))))
1072 (cond ((sixth x) `("\\mathbf{thru}" ,(sixth x))))
1073 (cond ((null (seventh x)) nil)
1074 ((eq 'mnot (caar (seventh x)))
1075 `("\\mathbf{while}" ,(cadr (seventh x))))
1076 (t `("\\mathbf{unless}" ,(seventh x))))
1077 `("\\mathbf{do}" ,(eighth x))))
1079 (defun texmdoin (x)
1080 (nconc `("\\mathbf{for}" ,(second x) "\\mathbf{in}" ,(third x))
1081 (cond ((sixth x) `("\\mathbf{thru}" ,(sixth x))))
1082 (cond ((null (seventh x)) nil)
1083 ((eq 'mnot (caar (seventh x)))
1084 `("\\mathbf{while}" ,(cadr (seventh x))))
1085 (t `("\\mathbf{unless}" ,(seventh x))))
1086 `("\\mathbf{do}" ,(eighth x))))
1088 (defprop mtext tex-mtext tex)
1089 (defprop text-string tex-mtext tex)
1090 (defprop mlabel tex-mlabel tex)
1091 (defprop spaceout tex-spaceout tex)
1093 ;; Additions by Marek Rychlik (rychlik@u.arizona.edu)
1094 ;; This stuff handles setting of LET rules
1096 (defprop | --> | "\\longrightarrow " texsym)
1097 (defprop #.(intern (format nil " ~A " 'where)) "\\;\\mathbf{where}\\;" texsym)
1099 ;; end of additions by Marek Rychlik
1101 (defun tex-try-sym (x)
1102 (if (symbolp x)
1103 (let ((tx (get x 'texsym))) (if tx tx x))
1106 (defun tex-mtext (x l r)
1107 (tex-list (map 'list #'tex-try-sym (cdr x)) l r ""))
1109 (defun tex-mlabel (x l r)
1110 (tex (caddr x)
1111 (append l
1112 (if (cadr x)
1113 (list (format nil "\\mbox{\\tt\\red(~A) \\black}" (tex-stripdollar (cadr x))))
1114 nil))
1115 r 'mparen 'mparen))
1117 (defun tex-spaceout (x l r)
1118 (append l (cons (format nil "\\hspace{~dmm}" (* 3 (cadr x))) r)))
1120 ;; run some code initialize file before $tex is run
1121 (defmfun $texinit(file)
1122 (declare (ignore file))
1123 '$done)
1125 ;; this just prints a \\end on the file; this is something a TeXnician would
1126 ;; probably have no trouble spotting, and will generally be unnecessary, since
1127 ;; we anticipate almost all use of tex would be involved in inserting this
1128 ;; stuff into larger files that would have their own \\end or equivalent.
1129 (defmfun $texend(filename)
1130 (with-open-file (st (stripdollar filename) :direction :output
1131 :if-exists :append :if-does-not-exist :create)
1132 (format st "\\end~%"))
1133 '$done)
1135 ;; Construct a Lisp function and attach it to the TEX property of
1136 ;; operator OP. The constructed function calls a Maxima function F
1137 ;; to generate TeX output for OP.
1138 ;; F must take 1 argument (an expression which has operator OP)
1139 ;; and must return a string (the TeX output).
1141 (defun make-maxima-tex-glue (op f)
1142 (let
1143 ((glue-f (gensym))
1144 (f-body `(append l
1145 (list
1146 (let ((f-x (mfuncall ',f x)))
1147 (if (stringp f-x) f-x
1148 (merror (intl:gettext "tex: function ~s did not return a string.~%") ($sconcat ',f)))))
1149 r)))
1150 (setf (symbol-function glue-f) (coerce `(lambda (x l r) ,f-body) 'function))
1151 (setf (get op 'tex) glue-f))
1154 ;; Convenience function to allow user to process expression X
1155 ;; and get a string (TeX output for X) in return.
1157 (defmfun $tex1 (x) (reduce #'strcat (tex x nil nil 'mparen 'mparen)))
1159 ;; Undone and trickier:
1160 ;; handle reserved symbols stuff, just in case someone
1161 ;; has a macsyma variable named (yuck!!) \over or has a name with
1162 ;; {} in it.
1163 ;; Maybe do some special hacking for standard notations for
1164 ;; hypergeometric fns, alternative summation notations 0<=n<=inf, etc.
1166 ;;Undone and really pretty hard: line breaking
1168 ;; The texput function was written by Barton Willis.
1170 (defmfun $texput (e s &optional tx)
1172 (cond
1173 ((stringp e)
1174 (setq e ($verbify e)))
1175 ((not (symbolp e))
1176 (merror (intl:gettext "texput: first argument must be a string or a symbol; found: ~M") e)))
1178 (setq s (if ($listp s) (margs s) (list s)))
1180 (cond
1181 ((null tx)
1182 ;; texput was called as texput(op, foo) where foo is a string
1183 ;; or a symbol; when foo is a string, assign TEXWORD property,
1184 ;; when foo is a symbol, construct glue function to call
1185 ;; the Maxima function named by foo.
1186 (let ((s0 (nth 0 s)))
1187 (if (stringp s0)
1188 (progn
1189 (when (get e 'texsym) (putprop e (list s0) 'texsym))
1190 (putprop e s0 'texword))
1191 (make-maxima-tex-glue e s0)))) ;; assigns TEX property
1192 ((eq tx '$matchfix)
1193 (putprop e 'tex-matchfix 'tex)
1194 (cond ((< (length s) 2)
1195 (merror (intl:gettext "texput: expected a list of two items for matchfix operator.")))
1196 ((= (length s) 2)
1197 (putprop e (list (list (first s)) (second s)) 'texsym))
1199 (putprop e (list (list (first s)) (second s) (third s)) 'texsym)))
1200 `((mlist) ,@s))
1202 ((eq tx '$nofix)
1203 (putprop e 'tex-nofix 'tex)
1204 (putprop e s 'texsym)
1205 (when (get e 'texword) (putprop e (nth 0 s) 'texword))
1206 (car s))
1208 ((eq tx '$prefix)
1209 (putprop e 'tex-prefix 'tex)
1210 (when (null (get e 'grind))
1211 (putprop e 180 'tex-rbp))
1212 (putprop e s 'texsym)
1213 (when (get e 'texword) (putprop e (nth 0 s) 'texword))
1214 (car s))
1216 ((eq tx '$infix)
1217 (putprop e 'tex-infix 'tex)
1218 (when (null (get e 'grind))
1219 (putprop e 180 'tex-lbp)
1220 (putprop e 180 'tex-rbp))
1221 (putprop e s 'texsym)
1222 (when (get e 'texword) (putprop e (nth 0 s) 'texword))
1223 (car s))
1225 ((eq tx '$nary)
1226 (putprop e 'tex-nary 'tex)
1227 (when (null (get e 'grind))
1228 (putprop e 180 'tex-lbp)
1229 (putprop e 180 'tex-rbp))
1230 (putprop e s 'texsym)
1231 (when (get e 'texword) (putprop e (nth 0 s) 'texword))
1232 (car s))
1234 ((eq tx '$postfix)
1235 (putprop e 'tex-postfix 'tex)
1236 (when (null (get e 'grind))
1237 (putprop e 180 'tex-lbp))
1238 (putprop e s 'texsym)
1239 (when (get e 'texword) (putprop e (nth 0 s) 'texword))
1240 (car s))))