我想繪製函數 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$
) 而不是 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
另一個解決方案是PST技巧使用pst-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}