pgfplotsでは、関数をプロットするとき、-5:5
. xmin:xmax
これをデフォルトに設定したいと思います。これを行う方法はありますか?言い換えれば、私は書くことができるようになりたいです
\addplot {x^2};
それ以外の
\addplot[domain=xmin:xmax] {x^2};
より具体的には、ここに私が探しているもののMWEがあります(そして機能しません):
\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{domain = min:max}
\begin{document}
\centering
\begin{tikzpicture}
\begin{axis}[xmin=-10, xmax=10, xlabel = $x$, ylabel = {$f(x) = x^2$}]
\addplot{x^2};
\end{axis}
\end{tikzpicture}
\end{document}