This WordPress site has been configured with features to ease documenting student projects. The following guide may help you in formatting your posts.

Program Code

This site includes the SyntaxHighlighter plug-in which provides a “code” shortcode for formatting program code.

A sample of Python program code:

import math
def distance(x,y):
    return math.sqrt(x**2+ y**2)

This was produced using the following notation:

[

import math
def distance(x,y):
    return math.sqrt(x**2+ y**2)

]


Math Notation

This site includes the MathJax-LaTeX plug-in, so math can be formatted using LaTeX notation.

A few equation examples:

\(E=mc^2\)
\(F=Ma\)
\(V=iR\)

These were produced using the following shortcodes and notation:

[latex]E=mc^2[/latex]
[latex]F=Ma[/latex]
[latex]V=iR[/latex]