我可以使用 Latex 中的 Tikz 绘制多项式,但无法绘制对数、指数等图形。
答案1
您可以尝试这样的事情:
\documentclass{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.3}
\begin{document}
\begin{tikzpicture}
\begin{axis}[restrict y to domain=-10:10]
\addplot [blue,domain=-10:10, samples=200]{log10(x)};
\addplot [red, domain=-10:10, samples=200]{exp(x)};
\end{axis}
\end{tikzpicture}
\end{document}
您可以参考PGFPLOTS 手册了解更多情节。