我想繪製一個帶有一個軸的圖表,並在特定值處繪製一個點並用標籤顯示它。另外,我想在 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}