我想绘制一个带有一个轴的图表,并在特定值处绘制一个点并用标签显示它。此外,我想在 x 轴的最小和最大刻度上放置两个标签。为了更好地理解,请看图片:
编辑:如果可能的话,我还想隐藏轴本身,只显示带有值的刻度和带有标签的点。
答案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}