어리석게 들릴 위험이 있지만 어디에서도 답을 찾을 수 없는 것 같습니다. 컬러바의 눈금 라벨을 어떻게 설정합니까? 다음 코드가 있다고 가정해 보겠습니다.
\documentclass{report}
\usepackage{tikz}
\usepackage{pgfplots}
\begin{document}
\begin{figure}
\begin{tikzpicture}
\begin{axis}[%
xmin=1, xmax=2,
ymin=1, ymax=2,
colorbar,point meta min=0.3,point meta max=5.5]
\addplot [color=black]
coordinates{(1,1)(2,2)};
\end{axis}
\end{tikzpicture}
\end{figure}
\end{document}
컬러바의 레이블이 1, 2, 3, 4, 5라는 것을 알 수 있습니다. 예를 들어 임의의 0.3, 0.6, 1, ... , 5.5를 원하면 어떻게 될까요?
건배!
답변1
pgfplots 매뉴얼의 섹션 4.8.12에서는 컬러바 스타일을 구성하는 방법을 설명합니다. 귀하의 경우에는
colorbar style={ ytick={0.3, 0.6, 1, 5.5} }