pgfplots 中的默认曲线样式

pgfplots 中的默认曲线样式

我可以为 pgfplots 中的曲线设置默认样式吗?例如,我希望文档中的所有曲线都是蓝色,轴都是黑色。

答案1

请参阅此处的答案:全局更改 pgfplots 中的绘图颜色

您可以使用以下方式全局设置样式pgfplotsset,在您的情况下类似于\pgfplotsset{every axis plot post/.append style={blue,mark=none}}

带有蓝色曲线和黑色轴的示例:

\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{every axis plot post/.append style={blue,mark=none}}

\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot [domain=-1:1]{x^2};
\addplot [domain=-1:1] {sin(deg(x))};
\end{axis}
\end{tikzpicture}
\end{document}

结果:

示例结果

相关内容