1 つの軸を持つチャートをプロットし、特定の値にポイントを描画してラベルで表示したいと思います。さらに、x 軸の最小値と最大値の目盛りに 2 つのラベルを配置したいと思います。理解を深めるために、次の画像を参照してください。
編集: 可能であれば、軸自体も非表示にして、値の付いた目盛りとラベルの付いたポイントのみを表示したいと思います。
答え1
tikz
これを行うことができます:
\documentclass[tikz,border=5]{standalone}
\begin{document}
\begin{tikzpicture}
\foreach \x in {0,...,5}{
\draw (\x,0.2) -- (\x,-0.2)node[below]{\x};
}
\draw[fill=magenta!40] (3.5,0) circle (3pt)node[above=0.2cm,anchor=south]{3.5};
\node[anchor=north] at (0,-0.6) {Start};
\node[anchor=north] at (5,-0.6) {End};
\end{tikzpicture}
\end{document}