I am just trying to get my head around when mathematica stopped (largely 3D) exporting complex graphics as a vector image. I believe it was in one of the 11 versions. I understand there are lots of issues with vector exports (like the well-known white lines around the edges, huge files, ...), but many of us had ways of dealing with that. It feels very retrograde to have to send high resolution bitmaps to journals for publication. Especially if you would like to combine plots, it just feels very clumsy. Are there better work arounds? Did I miss something?
A one line example:
Export["tst.svg",Plot3D[Sin[x y], {x, 0, 3}, {y, 0, 3}, ColorFunction -> "Rainbow", Mesh -> None]]
Exports to an SVG file containing only a bitmap image (this is using 12.2 on linux, but I have tested the same on my Mac and, if I remember right, Windows:
...<image id="image5" width="1500" height="1208" ...
Export["tst.svg",Plot3D[Sin[x y], {x, 0, 3}, {y, 0, 3}, ColorFunction -> "Rainbow", Mesh -> None]]SVG:<image id="image5" width="1500" height="1208" ...$\endgroup$ColorFunctionand rasterizing exported plots - see this question. $\endgroup$