Let say I want to draw a point and label it. The command I use to draw points is
Graphics[{Point[{0,0}], Point[{1,1}]}]
This draws the points $(0,0)$ and $(1,1)$. How can I label them in the resulting graphics as $(0,0)$ and $(1,1)$?
Let say I want to draw a point and label it. The command I use to draw points is
Graphics[{Point[{0,0}], Point[{1,1}]}]
This draws the points $(0,0)$ and $(1,1)$. How can I label them in the resulting graphics as $(0,0)$ and $(1,1)$?
Here's a somewhat ridiculous way to achieve that:
ListPlot[
{Labeled[{0, 0}, "The first point"], Labeled[{1, 1}, "The second one", Left]},
Axes -> False
]

ListPlot[{Labeled[{0, 0}, "The first point"], Labeled[{1, 1}, "The second one"]}] work well without "Left" in Mma10.0.2 on my WIN7. And your answer under https://mathematica.stackexchange.com/questions/45496/label-markers-on-listplot works well
– Harry
Apr 18 '17 at 04:45
Text[]. – J. M.'s missing motivation May 20 '16 at 19:59Inset, and perhaps (45496) – Mr.Wizard May 20 '16 at 20:15