함수 x(t) = tan(t), -pi를 그래프로 표시하고 싶습니다.
Package PGF Math Error: Could not parse input '' as a floating
point number, sorry. The unreadable part was near ''. (in '$-\pi $').
내 실수로.
어떤 제안이 있나요?
답변1
코드 예제 없이는 말하기가 어렵습니다. 내 생각엔 파이 상수( $\pi$
) 대신 파이 기호( ) 를 사용하고 있는 것 같습니다 pi
.
이것은 작동합니다:
\begin{tikzpicture}
\begin{axis}[
domain = -pi/2+0.1:pi/2-0.1,
samples = 200
]
\addplot[black]{tan(deg(x))};
\end{axis}
\end{tikzpicture}
또한 참조하십시오여기더 포괄적인 예를 들어 보겠습니다.
답변2
또 다른 솔루션PSTrickspst-plot
및 을 사용합니다 pst-math
.
\documentclass{article}
\usepackage{pst-plot}
\usepackage{pst-math}
\begin{document}
\begin{pspicture}*(-4.5,-2)(4.5,2)
\SpecialCoor
\psaxes[trigLabelBase=2,dx=\psPiH,xunit=\psPi,trigLabels]%
{->}(0,0)(-2,-4.5)(2,5.5)[$x$,0][$y$,90]
\psset{algebraic=true}
\psplot[yMaxValue=6,yMinValue=-3,linewidth=1.6pt,plotpoints=2000,
linecolor=red]{-5}{5}{tan(x)}
\psline[linestyle=dotted](-\psPiH,-5)(-\psPiH,5)
\psline[linestyle=dotted](\psPiH,-5)(\psPiH,5)
\end{pspicture}
\end{document}