하나의 축으로 차트를 구성하고 특정 값에 점을 그려 레이블과 함께 표시하고 싶습니다. 또한 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}