In William T. Shaw's Complex Analysis with Mathematica textbook, written for Mathematica 5, he has this command in his exercises:
Do[Plot[x^2 + c, {x, -2, 2}, PlotRange -> {-1, 3}], {c, -1, 1, 0.2}]
But it does not work in Mathematica 11.1.0. Is there a reason for this?
Column @ Table[Plot[x^2 + c, {x, -2, 2}, PlotRange -> {-1, 3}], {c, -1, 1, 1}]also works and puts the output in a single cell. – m_goldberg May 10 '17 at 07:39Graphicsexpressions did not automatically render as the graphics they represented. Rendering was explicitly triggered withShow.Showworked a bit likePrint: it inserted a new cell in the notebook with rendered graphics. Plotting functions (but notGraphics) invokedShowautomatically. This is why theDoloop you quote had the side effect of rendering graphics. Now you know why a function for combining (and not showing) graphics is calledShow. It's because in the past that's what it did: it showed the picture. – Szabolcs May 10 '17 at 14:20