我在报告中使用 pgfplots 绘制许多图,并且必须为每个轴指定xmin
、xmax
和 域,即使我始终需要域为xmin
:xmax
。有没有办法将域设置为自动等于轴的xmin
: ?xmax
例如,在此 MWE 中:
\documentclass{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
xmin=-10, xmax=10,
% domain=-10:10 %% Can I specify this automatically?
]
\addplot {cos(deg(x))};
%\addplot[domain=xmin:xmax] {cos(deg(x))}; % Or even this?
\end{axis}
\end{tikzpicture}
\end{document}