来自轴限制的自动域

来自轴限制的自动域

我在报告中使用 pgfplots 绘制许多图,并且必须为每个轴指定xminxmax和 域,即使我始终需要域为xminxmax。有没有办法将域设置为自动等于轴的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}

相关内容