I want this program's plots to be combined into one plot - just can't seem to make it appear in one plot. Any suggestions?
n = -1; While[n < 3,
sol = NDSolve[{D[xtraj[t],
t] == -(Sinh[
2 xtraj[t] (-t)]/
(Cosh[2 xtraj[t] (-t)])), xtraj[0] == n},
xtraj[t], {t, -4, 8}]; n = n + 0.25;
p = ParametricPlot[{t, xtraj[t]} /. sol, {t, -4, 8},
PlotRange -> All, PlotStyle -> {Blue, Full, Thick},
AxesStyle -> Thickness[.001], LabelStyle -> {Black, Medium}];
Print[p]]
Attachments: