Hi there I am MSc student and i am new to LaTeX. I wrote a program that shows
coordinate in display rather label as I want like this display
.
\documentclass[a4paper, oneside]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\foreach \Point/\PointLabel in {(0,0), (-0.08,-0.75), (-0.22,-1.5), (-0.44,-2.25), (-1.01,-3.5), (-1.49,-4.25), (-2.09,-5), (-2.87,-5.75)/,}
\draw[thick, fill=black] \Point circle (0.08) node[below right] {$\PointLabel$};
\draw[thick, black] (0,0.4) arc (0:-52:8cm);
\end{tikzpicture}
\end{document}
still have a problem, help me if there is a configuration problem

