SpecialOutputPackageΒΆ
out.spad line 53 [edit on github]
SpecialOutputPackage allows FORTRAN, Tex and MathML Formatter output from programs.
- outputAsFortran: (String, OutputForm) -> Void
outputAsFortran(v, o)
sends outputv
=o
in FORTRAN format to the destination defined by spadsys{)set output fortran}.
- outputAsFortran: List OutputForm -> Void
outputAsFortran(l)
sends (for each expression in the listl
) output in FORTRAN format to the destination defined by spadsys{)set output fortran}.
- outputAsFortran: OutputForm -> Void
outputAsFortran(o)
sends outputo
in FORTRAN format.
- outputAsMathML: List OutputForm -> Void
outputAsMathML(l)
sends (for each expression in the listl
) output in MathML format to the destination as defined by spadsys{)set output mathml}.
- outputAsMathML: OutputForm -> Void
outputAsMathML(o)
sends outputo
in MathML format to the destination as defined by spadsys{)set output mathml}.
- outputAsTex: List OutputForm -> Void
outputAsTex(l)
sends (for each expression in the listl
) output in Tex format to the destination as defined by spadsys{)set output tex}.
- outputAsTex: OutputForm -> Void
outputAsTex(o)
sends outputo
in Tex format to the destination defined by spadsys{)set output tex}.