여기서는 \sisetup{round-mode=off,add-decimal-zero=false,round-precision=0}
소수점 0을 억제했습니다. 그러나 나는 필요한만큼 100
얻을 수 없었습니다.100.0
\documentclass[border=1cm]{standalone}
\usepackage{pgfplots,siunitx}
\sisetup{round-mode=off,add-decimal-zero=false,round-precision=0}
\pgfplotsset{compat=1.14}
\pgfmathsetmacro{\t}{2*50}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot[mark=*] coordinates {(0,1)} node[pin=150:{%
$\SI{\t}{\us}$%
}]{} ;
\end{axis}
\end{tikzpicture}
\end{document}
답변1
\t
여기서 조사해보면
> \t=macro:
->100.0.
따라서 siunitx
반올림 없이 예상한 대로 정확히 수행됩니다.등., 활성: 주어진 값을 유지합니다. pgf
끝에서 또는 반올림하여 아무 자리 없이도 후행 0을 제거해야 합니다 .
\sisetup{round-mode=places,round-precision=0}