How to plot a 3D surface with a simple black and white style?
I would say you go for the Lighting
option:
Plot3D[Exp[-(x^2 + y^2)], {x, -2, 2}, {y, -2, 2},
Lighting -> {{"Ambient", White}}, PlotRange -> All, Mesh -> {20}]
Just a few alternatives. (from @Mr.Wizard) If one prefers to have it simple but to keep shading, then
Plot3D[Exp[-(x^2 + y^2)], {x, -2, 2}, {y, -2, 2},
Lighting -> "Neutral", PlotRange -> All, Mesh -> {20}]
Some may want to have transparent mesh
Plot3D[Exp[-(x^2 + y^2)], {x, -2, 2}, {y, -2, 2}, PlotRange -> All,
Mesh -> {20}, PlotStyle -> Opacity[0], MeshStyle -> Opacity[.5]]
or from @J.M.
Plot3D[Exp[-(x^2 + y^2)], {x, -2, 2}, {y, -2, 2},
PlotStyle -> FaceForm[None], PlotRange -> All, Mesh -> {20}]
If one wants a simple wireframe mesh, as in Vitaliy's answer, here's yet another method:
DeleteCases[Plot3D[Exp[-(x^2 + y^2)], {x, -2, 2}, {y, -2, 2}, Mesh -> {20}], _Polygon, ∞]
As it turns out, however, there is an even simpler way to generate a nice wiremesh:
Plot3D[Exp[-(x^2 + y^2)], {x, -2, 2}, {y, -2, 2}, Mesh -> {20}, PlotStyle -> None]