I'm generating a ListPlot and wanting to use Open Markers like in the 2nd example here, however I don't want the word "Open Markers" - I just want open circles/diamonds etc. Are there default shapes you can still access with mathematica like this, or do you need to create all your own markers and define directly?
I know I can create all my own markers and make it anything I want, but I was hoping for some simple defaults that you can easily access. I've tried using Circle, Diamond, Square because those auto-completed, but I just get the words, not the symbols.
e.g.
ListPlot[{{1, 2, 3, 5, 8}, {2, 3, 6, 9, 10}, {4, 5, 7, 10, 12}},
PlotMarkers -> "OpenMarkers"]
I am using v11.3.0


\[EmptySquare]\[EmptyCircle]\[EmptyDiamond]– OkkesDulgerci Jul 12 '19 at 00:54PlotMarkers -> "OpenMarkers"was added in version 12. It does what the OP wants but is not available in V11.3. – Michael E2 Jul 12 '19 at 04:24