/usr/share/axiom-20170501/src/algebra/TEX.spad is in axiom-source 20170501-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 | )abbrev domain TEX TexFormat
++ Author: Robert S. Sutor
++ Date Created: 1987 through 1992
++ Description:
++ \spadtype{TexFormat} provides a coercion from \spadtype{OutputForm} to
++ \TeX{} format. The particular dialect of \TeX{} used is \LaTeX{}.
++ The basic object consists of three parts: a prologue, a
++ tex part and an epilogue. The functions \spadfun{prologue},
++ \spadfun{tex} and \spadfun{epilogue} extract these parts,
++ respectively. The main guts of the expression go into the tex part.
++ The other parts can be set (\spadfun{setPrologue!},
++ \spadfun{setEpilogue!}) so that contain the appropriate tags for
++ printing. For example, the prologue and epilogue might simply
++ contain ``\verb+\[+'' and ``\verb+\]+'', respectively, so that
++ the TeX section will be printed in LaTeX display math mode.
TexFormat() : SIG == CODE where
E ==> OutputForm
I ==> Integer
L ==> List
S ==> String
US ==> UniversalSegment(Integer)
SIG ==> SetCategory with
coerce : E -> $
++ coerce(o) changes o in the standard output format to TeX
++ format.
convert : (E,I) -> $
++ convert(o,step) changes o in standard output format to
++ TeX format and also adds the given step number. This is useful
++ if you want to create equations with given numbers or have the
++ equation numbers correspond to the interpreter step numbers.
convert : (E,I,E) -> $
++ convert(o,step,type) changes o in standard output format to
++ TeX format and also adds the given step number and type. This
++ is useful if you want to create equations with given numbers
++ or have the equation numbers correspond to the interpreter step
++ numbers.
display : ($, I) -> Void
++ display(t,width) outputs the TeX formatted code t so that each
++ line has length less than or equal to \spadvar{width}.
display : $ -> Void
++ display(t) outputs the TeX formatted code t so that each
++ line has length less than or equal to the value set by
++ the system command \spadsyscom{set output length}.
epilogue : $ -> L S
++ epilogue(t) extracts the epilogue section of a TeX form t.
tex : $ -> L S
++ tex(t) extracts the TeX section of a TeX form t.
new : () -> $
++ new() create a new, empty object. Use \spadfun{setPrologue!},
++ \spadfun{setTex!} and \spadfun{setEpilogue!} to set the various
++ components of this object.
prologue : $ -> L S
++ prologue(t) extracts the prologue section of a TeX form t.
setEpilogue! : ($, L S) -> L S
++ setEpilogue!(t,strings) sets the epilogue section of a TeX form t
++ to strings.
setTex! : ($, L S) -> L S
++ setTex!(t,strings) sets the TeX section of a TeX form t to strings.
setPrologue! : ($, L S) -> L S
++ setPrologue!(t,strings) sets the prologue section of a TeX form t
++ to strings.
CODE ==> add
import OutputForm
import Character
import Integer
import List OutputForm
import List String
Rep := Record(prolog : L S, TeX : L S, epilog : L S)
-- local variables declarations and definitions
expr: E
prec,opPrec: I
str: S
blank : S := " \ "
maxPrec : I := 1000000
minPrec : I := 0
unaryOps : L S := ["-","^"]$(L S)
unaryPrecs : L I := [700,260]$(L I)
-- the precedence of / in the following is relatively low because
-- the bar obviates the need for parentheses.
binaryOps : L S := ["+->","|","**","/","<",">","=","OVER"]$(L S)
binaryPrecs : L I := [0,0,900, 700,400,400,400, 700]$(L I)
naryOps : L S := ["-","+","*",blank,",",";"," ","ROW","",
" \cr ","&"," \\ "]$(L S)
naryPrecs : L I := [700,700,800, 800,110,110, 0, 0, 0,
0, 0, 0]$(L I)
naryNGOps : L S := ["ROW","&"]$(L S)
plexOps : L S := ["SIGMA","SIGMA2","PI","PI2","INTSIGN","INDEFINTEGRAL"]$(L S)
plexPrecs : L I := [ 700, 800, 700, 800 , 700, 700]$(L I)
specialOps : L S := ["MATRIX","BRACKET","BRACE","CONCATB","VCONCAT", _
"AGGLST","CONCAT","OVERBAR","ROOT","SUB","TAG", _
"SUPERSUB","ZAG","AGGSET","SC","PAREN", _
"SEGMENT","QUOTE","theMap" ]
-- the next two lists provide translations for some strings for
-- which TeX provides special macros.
specialStrings : L S :=
["cos", "cot", "csc", "log", "sec", "sin", "tan",
"cosh", "coth", "csch", "sech", "sinh", "tanh",
"acos","asin","atan","erf","...","$","infinity"]
specialStringsInTeX : L S :=
["\cos","\cot","\csc","\log","\sec","\sin","\tan",
"\cosh","\coth","\csch","\sech","\sinh","\tanh",
"\arccos","\arcsin","\arctan","\erf","\ldots","\$","\infty"]
-- local function signatures
addBraces: S -> S
addBrackets: S -> S
group: S -> S
formatBinary: (S,L E, I) -> S
formatFunction: (S,L E, I) -> S
formatMatrix: L E -> S
formatNary: (S,L E, I) -> S
formatNaryNoGroup: (S,L E, I) -> S
formatNullary: S -> S
formatPlex: (S,L E, I) -> S
formatSpecial: (S,L E, I) -> S
formatUnary: (S, E, I) -> S
formatTex: (E,I) -> S
newWithNum: I -> $
parenthesize: S -> S
precondition: E -> E
postcondition: S -> S
splitLong: (S,I) -> L S
splitLong1: (S,I) -> L S
stringify: E -> S
ungroup: S -> S
-- public function definitions
new() : $ ==
[["$$"]$(L S), [""]$(L S), ["$$"]$(L S)]$Rep
newWithNum(stepNum: I) : $ ==
num : S := concat(concat("\leqno(",string(stepNum)$S),")")$S
[["$$"]$(L S), [""]$(L S), [num,"$$"]$(L S)]$Rep
coerce(expr : E): $ ==
f : $ := new()$$
f.TeX := [postcondition
formatTex(precondition expr, minPrec)]$(L S)
f
convert(expr : E, stepNum : I): $ ==
f : $ := newWithNum(stepNum)
f.TeX := [postcondition
formatTex(precondition expr, minPrec)]$(L S)
f
display(f : $, len : I) ==
s,t : S
for s in f.prolog repeat sayTeX$Lisp s
for s in f.TeX repeat
for t in splitLong(s, len) repeat sayTeX$Lisp t
for s in f.epilog repeat sayTeX$Lisp s
void()$Void
display(f : $) ==
display(f, _$LINELENGTH$Lisp pretend I)
prologue(f : $) == f.prolog
tex(f : $) == f.TeX
epilogue(f : $) == f.epilog
setPrologue!(f : $, l : L S) == f.prolog := l
setTex!(f : $, l : L S) == f.TeX := l
setEpilogue!(f : $, l : L S) == f.epilog := l
coerce(f : $): E ==
s,t : S
l : L S := nil
for s in f.prolog repeat l := concat(s,l)
for s in f.TeX repeat
for t in splitLong(s, (_$LINELENGTH$Lisp pretend Integer) - 4) repeat
l := concat(t,l)
for s in f.epilog repeat l := concat(s,l)
(reverse l) :: E
-- local function definitions
ungroup(str: S): S ==
len : I := #str
len < 2 => str
lbrace : Character := char "{"
rbrace : Character := char "}"
-- drop leading and trailing braces
if (str.1 =$Character lbrace) and (str.len =$Character rbrace) then
u : US := segment(2,len-1)$US
str := str.u
str
postcondition(str: S): S ==
str := ungroup str
len : I := #str
plus : Character := char "+"
minus: Character := char "-"
len < 4 => str
for i in 1..(len-1) repeat
if (str.i =$Character plus) and (str.(i+1) =$Character minus)
then setelt(str,i,char " ")$S
str
stringify expr == (mathObject2String$Lisp expr)@S
lineConcat( line : S, lines: L S ) : L S ==
length := #line
if ( length > 0 ) then
-- If the last character is a backslash then split at "\ ".
-- Reinstate the blank.
if (line.length = char "\" ) then line := concat(line, " ")
-- Remark: for some reason, "\%" at the beginning
-- of a line has the "\" erased when printed
if ( line.1 = char "%" ) then line := concat(" \", line)
else if ( line.1 = char "\" ) and length > 1 _
and ( line.2 = char "%" ) then
line := concat(" ", line)
lines := concat(line,lines)$List(S)
lines
splitLong(str : S, len : I): L S ==
-- this blocks into lines
if len < 20 then len := _$LINELENGTH$Lisp
splitLong1(str, len)
splitLong1(str : S, len : I) ==
-- We first build the list of lines backwards and then we
-- reverse it.
l : List S := nil
s : S := ""
ls : I := 0
ss : S
lss : I
for ss in split(str,char " ") repeat
-- have the newline macro end a line (even if it means the line
-- is slightly too long)
ss = "\\" =>
l := lineConcat( concat(s,ss), l )
s := ""
ls := 0
lss := #ss
-- place certain tokens on their own lines for clarity
ownLine : Boolean :=
u : US := segment(1,4)$US
(lss > 3) and ("\end" = ss.u) => true
u := segment(1,5)$US
(lss > 4) and ("\left" = ss.u) => true
u := segment(1,6)$US
(lss > 5) and (("\right" = ss.u) or ("\begin" = ss.u)) => true
false
if ownLine or (ls + lss > len) then
if not empty? s then l := lineConcat( s, l )
s := ""
ls := 0
ownLine or lss > len => l := lineConcat( ss, l )
(lss = 1) and (ss.1 = char "\") =>
ls := ls + lss + 2
s := concat(s,concat(ss," ")$S)$S
ls := ls + lss + 1
s := concat(s,concat(ss," ")$S)$S
if ls > 0 then l := lineConcat( s, l )
reverse l
group str ==
concat ["{",str,"}"]
addBraces str ==
concat ["\left\{ ",str," \right\}"]
addBrackets str ==
concat ["\left[ ",str," \right]"]
parenthesize str ==
concat ["\left( ",str," \right)"]
precondition expr ==
outputTran$Lisp expr
formatSpecial(op : S, args : L E, prec : I) : S ==
arg : E
prescript : Boolean := false
op = "theMap" => "\mbox{theMap(...)}"
op = "AGGLST" =>
formatNary(",",args,prec)
op = "AGGSET" =>
formatNary(";",args,prec)
op = "TAG" =>
group concat [formatTex(first args,prec),
"\rightarrow",
formatTex(second args,prec)]
op = "VCONCAT" =>
group concat("\begin{array}{c}",
concat(concat([concat(formatTex(u, minPrec),"\\")
for u in args]::L S),
"\end{array}"))
op = "CONCATB" =>
formatNary(" ",args,prec)
op = "CONCAT" =>
formatNary("",args,minPrec)
op = "QUOTE" =>
group concat("{\tt '}",formatTex(first args, minPrec))
op = "BRACKET" =>
group addBrackets ungroup formatTex(first args, minPrec)
op = "BRACE" =>
group addBraces ungroup formatTex(first args, minPrec)
op = "PAREN" =>
group parenthesize ungroup formatTex(first args, minPrec)
op = "OVERBAR" =>
null args => ""
group concat ["\overline ",formatTex(first args, minPrec)]
op = "ROOT" =>
null args => ""
tmp : S := group formatTex(first args, minPrec)
null rest args => group concat ["\sqrt ",tmp]
group concat
["\root ",group formatTex(first rest args, minPrec)," \of ",tmp]
op = "SEGMENT" =>
tmp : S := concat [formatTex(first args, minPrec),".."]
group
null rest args => tmp
concat [tmp,formatTex(first rest args, minPrec)]
op = "SUB" =>
group concat [formatTex(first args, minPrec)," \sb ",
formatSpecial("AGGLST",rest args,minPrec)]
op = "SUPERSUB" =>
-- variable name
form : List S := [formatTex(first args, minPrec)]
-- subscripts
args := rest args
null args => concat(form)$S
tmp : S := formatTex(first args, minPrec)
if (tmp ^= "") and (tmp ^= "{}") and (tmp ^= " ") then
form := append(form,[" \sb ",group tmp])$(List S)
-- superscripts
args := rest args
null args => group concat(form)$S
tmp : S := formatTex(first args, minPrec)
if (tmp ^= "") and (tmp ^= "{}") and (tmp ^= " ") then
form := append(form,[" \sp ",group tmp])$(List S)
-- presuperscripts
args := rest args
null args => group concat(form)$S
tmp : S := formatTex(first args, minPrec)
if (tmp ^= "") and (tmp ^= "{}") and (tmp ^= " ") then
form := append([" \sp ",group tmp],form)$(List S)
prescript := true
-- presubscripts
args := rest args
null args =>
group concat
prescript => cons("{}",form)
form
tmp : S := formatTex(first args, minPrec)
if (tmp ^= "") and (tmp ^= "{}") and (tmp ^= " ") then
form := append([" \sb ",group tmp],form)$(List S)
prescript := true
group concat
prescript => cons("{}",form)
form
op = "SC" =>
-- need to handle indentation someday
null args => ""
tmp := formatNaryNoGroup(" \\ ", args, minPrec)
group concat ["\begin{array}{l} ",tmp," \end{array} "]
op = "MATRIX" => formatMatrix rest args
op = "ZAG" =>
concat [" \zag{",formatTex(first args, minPrec),"}{",
formatTex(first rest args,minPrec),"}"]
concat ["not done yet for ",op]
formatPlex(op : S, args : L E, prec : I) : S ==
hold : S
p : I := position(op,plexOps)
p < 1 => error "unknown Tex unary op"
opPrec := plexPrecs.p
n : I := #args
(n ^= 2) and (n ^= 3) => error "wrong number of arguments for plex"
s : S :=
op = "SIGMA" => "\sum"
op = "SIGMA2" => "\sum"
op = "PI" => "\prod"
op = "PI2" => "\prod"
op = "INTSIGN" => "\int"
op = "INDEFINTEGRAL" => "\int"
"????"
hold := formatTex(first args,minPrec)
args := rest args
if op ^= "INDEFINTEGRAL" then
if hold ^= "" then
s := concat [s," \sb",group concat ["\displaystyle ",hold]]
if not null rest args then
hold := formatTex(first args,minPrec)
if hold ^= "" then
s := concat [s," \sp",group concat ["\displaystyle ",hold]]
args := rest args
s := concat [s," ",formatTex(first args,minPrec)]
else
hold := group concat [hold," ",formatTex(first args,minPrec)]
s := concat [s," ",hold]
if opPrec < prec then s := parenthesize s
group s
formatMatrix(args : L E) : S ==
-- format for args is [[ROW ...],[ROW ...],[ROW ...]]
-- generate string for formatting columns (centered)
cols : S := "{"
for i in 2..#(first(args) pretend L E) repeat
cols := concat(cols,"c")
cols := concat(cols,"} ")
group addBrackets concat
["\begin{array}",cols,formatNaryNoGroup(" \\ ",args,minPrec),
" \end{array} "]
formatFunction(op : S, args : L E, prec : I) : S ==
group concat [op, " ", parenthesize formatNary(",",args,minPrec)]
formatNullary(op : S) ==
op = "NOTHING" => ""
group concat [op,"()"]
formatUnary(op : S, arg : E, prec : I) ==
p : I := position(op,unaryOps)
p < 1 => error "unknown Tex unary op"
opPrec := unaryPrecs.p
s : S := concat [op,formatTex(arg,opPrec)]
opPrec < prec => group parenthesize s
op = "-" => s
group s
formatBinary(op : S, args : L E, prec : I) : S ==
p : I := position(op,binaryOps)
p < 1 => error "unknown Tex binary op"
op :=
op = "|" => " \mid "
op = "**" => " \sp "
op = "/" => " \over "
op = "OVER" => " \over "
op = "+->" => " \mapsto "
op
opPrec := binaryPrecs.p
s : S := formatTex(first args, opPrec)
if op = " \over " then
s := concat [" \frac{",s,"}{",formatTex(first rest args, opPrec),"}"]
else if op = " \sp " then
s := concat [s,"^",formatTex(first rest args, opPrec)]
else
s := concat [s,op,formatTex(first rest args, opPrec)]
group
op = " \over " => s
opPrec < prec => parenthesize s
s
formatNary(op : S, args : L E, prec : I) : S ==
group formatNaryNoGroup(op, args, prec)
formatNaryNoGroup(op : S, args : L E, prec : I) : S ==
null args => ""
p : I := position(op,naryOps)
p < 1 => error "unknown Tex nary op"
op :=
op = "," => ", \: "
op = ";" => "; \: "
op = "*" => blank
op = " " => " \ "
op = "ROW" => " & "
op
l : L S := nil
opPrec := naryPrecs.p
for a in args repeat
l := concat(op,concat(formatTex(a,opPrec),l)$L(S))$L(S)
s : S := concat reverse rest l
opPrec < prec => parenthesize s
s
formatTex(expr,prec) ==
i,len : Integer
intSplitLen : Integer := 20
ATOM(expr)$Lisp pretend Boolean =>
str := stringify expr
len := #str
INTEGERP$Lisp expr =>
i := expr pretend Integer
if (i < 0) or (i > 9)
then
group
nstr : String := ""
-- insert some blanks into the string, if too long
while ((len := #str) > intSplitLen) repeat
nstr := concat [nstr," ",
elt(str,segment(1,intSplitLen)$US)]
str := elt(str,segment(intSplitLen+1)$US)
empty? nstr => str
nstr :=
empty? str => nstr
concat [nstr," ",str]
elt(nstr,segment(2)$US)
else str
str = "%pi" => "\pi"
str = "%e" => "e"
str = "%i" => "i"
len > 1 and str.1 = char "%" and str.2 = char "%" =>
u : US := segment(3,len)$US
concat(" \%\%",str.u)
len > 0 and str.1 = char "%" => concat(" \",str)
len > 1 and digit? str.1 => group str -- should handle floats
len > 0 and str.1 = char "_"" =>
concat(concat(" \mbox{\tt ",str),"} ")
len = 1 and str.1 = char " " => "{\ }"
(i := position(str,specialStrings)) > 0 =>
specialStringsInTeX.i
(i := position(char " ",str)) > 0 =>
-- We want to preserve spacing, so use a roman font.
concat(concat(" \mbox{\rm ",str),"} ")
str
l : L E := (expr pretend L E)
null l => blank
op : S := stringify first l
args : L E := rest l
nargs : I := #args
-- special cases
member?(op, specialOps) => formatSpecial(op,args,prec)
member?(op, plexOps) => formatPlex(op,args,prec)
-- nullary case
0 = nargs => formatNullary op
-- unary case
(1 = nargs) and member?(op, unaryOps) =>
formatUnary(op, first args, prec)
-- binary case
(2 = nargs) and member?(op, binaryOps) =>
formatBinary(op, args, prec)
-- nary case
member?(op,naryNGOps) => formatNaryNoGroup(op,args, prec)
member?(op,naryOps) => formatNary(op,args, prec)
op := formatTex(first l,minPrec)
formatFunction(op,args,prec)
|