I cannot find a list of standard plot markers (square, trinagle, dot, circle, disk, cross, plus, ...) and how to use them.
Fore example I can access a self made cross, by:
cross = Graphics[{Blue, Line[{{{-1, -1}, {1, 1}}, {{-1, 1}, {1, -1}}}]}];
ListPlot[{{1, 1}, {2, 2}}, PlotMarkers -> {cross, 0.1}, PlotRange -> {{0, 2.5}, {0, 2.5}},
AspectRatio -> Automatic]
Is this symbol and the others in the list predefined, and how can I use them in a plot?
UPDATE:
Following Carl Wolls proposal I tried:
p = Style[Graphics`PlotMarkers[][[6, 1]], FontFamily -> "Times"];
circle = Graphics[Circle[{0, 0}, 1]];
range = Range[0.9, 1.15, 0.1];
ListPlot[{{{1, 1}, {2, 2}}, {{1, 1}, {2, 2}}, {{1, 1}, {2, 2}}},
PlotMarkers -> {{p, 300}, {cross, 0.05}, {circle, 0.3}}, GridLines -> {range, range},
PlotRange -> {{0.8, 1.15}, {0.8, 1.15}}, AspectRatio -> Automatic]
As you see the symbol p is still not centered around the data point {1,1}, whereas circle and cross are correct.


Palettesmenu forSpecial Characters– Bob Hanlon Aug 23 '17 at 16:26Graphics\PlotMarkers[]` – John Joseph M. Carrasco Aug 23 '17 at 16:31Graphics\PlotMarkers[][[1, 1]]`is unfortunately not centered ... the same problem for all other markers ... – lio Aug 23 '17 at 17:02crossin my example. – lio Aug 23 '17 at 17:07Style[Graphics`PlotMarkers[][[1, 1]], FontFamily->"Times"]instead. – Carl Woll Aug 23 '17 at 23:21... PlotMarkers[][[1, 1]], FontFamily -> "Times"];– lio Aug 24 '17 at 04:02