SpecialOutputPackageΒΆ

out.spad line 54 [edit on github]

SpecialOutputPackage allows FORTRAN, Tex and MathML Formatter output from programs.

outputAsFortran: (String, OutputForm) -> Void

outputAsFortran(v, o) sends output v = 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 list l) output in FORTRAN format to the destination defined by spadsys{)set output fortran}.

outputAsFortran: OutputForm -> Void

outputAsFortran(o) sends output o in FORTRAN format.

outputAsMathML: List OutputForm -> Void

outputAsMathML(l) sends (for each expression in the list l) output in MathML format to the destination as defined by spadsys{)set output mathml}.

outputAsMathML: OutputForm -> Void

outputAsMathML(o) sends output o 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 list l) output in Tex format to the destination as defined by spadsys{)set output tex}.

outputAsTex: OutputForm -> Void

outputAsTex(o) sends output o in Tex format to the destination defined by spadsys{)set output tex}.