Hi Michael,
If you are trying to reproduce the image in the plot_dashes.nb notebook you need to add a dash specification to the PlotStyle. Something like
dashStyles = {Dashing[Medium], Dashing[{0, Small}],
Dashing[{0, Small, Small, Small}], Dashing[{0.03, 0.01}],
Dashing[{0.02, 0.01}]}
Plot[Evaluate[Table[Sin[v s], {v, 0.1, 0.7, 0.15}]], {s, 0, 15},
PlotStyle -> Table[{dashStyles[[i + 1]], Hue[1 - 0.15 i], Thickness[0.01]}, {i, 0, 4}],
AspectRatio -> 0.75,
PlotRange -> {{0, 15}, {-1.2, 1.2}},
Frame -> True,
GridLines -> Automatic]
You will have to experiment with the Dashing to exactly reproduce the plot.