I am experiencing problems with exporting figures such as combinations of ContourPlot and ComplexListPlot. As an example, when zooming into the resulting pdf of the plot
Show[ComplexListPlot[{0.4 + 0.2 I},
PlotMarkers -> {{Graphics[Triangle[{{{0, 0}, {1, 1.6}, {2, 0}}}]],
0.03}}]]
Export["test.pdf", %];
this gives the following picture.
The top part is cut off for no apparent reason. When such PlotMarkers are combined with more complicated Figures, they get arbitrarily disfigured (ignore the gray strip):
This should depict a Triangle, and there are similar problems for simpler Graphics such as Rectangle or Disk.
An alternative to PlotMarker is given in this answer, which for simple plots works but in combination with other plots shows similar effects. The result is not dependent on the way the Figure is saved (either with "Save Graphic as" or Export), and seems to be independent also on the file type. I am running Mathematica 12.3. Any help is much appreciated.








ImageResolution). Perhaps you have other ideas? – El Rafu Jun 21 '21 at 21:03Export["test.pdf", Rasterize[%, ImageSize -> Full, ImageResolution -> 600]];That created a very crisp image for me – Eric William Smith Jun 21 '21 at 22:03