It seems like PlotTheme -> "Monochrome" produces up to 8 different dashing styles for Plot. I know one way to overcome this is to use ListLinePlot and use PlotMarkers to produce more combinations. However, I am wondering if there are simpler ways to just assign more dashing styles in the Monochrome theme?
For example, as seen below, the styles repeat themselves.
Plot[Evaluate@Table[2 p + y, {p, 0, 1, 0.1}], {y, 0, 4},
PlotTheme -> "Monochrome"]


p=5– Jason B. Feb 22 '17 at 21:33Plot[Evaluate@Table[a x^2, {a, 1, 2, .1}], {x, 0, 1}, PlotTheme -> "Monochrome"]suffices. – David G. Stork Feb 22 '17 at 21:47