SpecialOutputPackage

out.spad line 53 [edit on github]

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

outputAsFortran : List(OutputForm) -> Void

outputAsFortran(l) sends (for each expression in the list l) output in FORTRAN format to the destination defined by )set output fortran.

outputAsFortran : OutputForm -> Void

outputAsFortran(o) sends output o in FORTRAN format.

outputAsFortran : (String, OutputForm) -> Void

outputAsFortran(v, o) sends output v = o in FORTRAN format to the destination defined by )set output fortran.

outputAsMathML : List(OutputForm) -> Void

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

outputAsMathML : OutputForm -> Void

outputAsMathML(o) sends output o in MathML format to the destination as defined by )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 )set output tex.

outputAsTex : OutputForm -> Void

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