basic minimum syntax of plot command to plot a function f as a function of x over the range [xmin, xmax]:

Plot[f, {x, xmin, xmax}]

extended syntax to specify additional options:

Plot[f, {x,xmin,xmax}, option->value, option->value, ...]

options of interest for axes labels & titles: AxesLabel, PlotLabel

example:

Plot[Sin[x], {x,-6.28,6.28}, AxesLabel->{"x", "y=sinx"}, PlotLabel->"Plot of sin(x) over [-2pi,2pi]\n\n\n\n\n\n\n\n"]

The newlines at the end are a workaround to compensate for the fact that Mathematica positions the label poorly, too low on the page so it obscures the plot itself.

(courtesy of TR)