我想更改绘图的边框样式。默认情况下,它是纯黑色。但如果我想要一个线宽为 10pt 的蓝色虚线样式怎么办?(这只是一个例子)。以下是代码
\documentclass{article}
\usepackage{tikz}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot[domain = 1:10]{x};
\end{axis}
\end{tikzpicture}
\end{document}
谢谢
答案1
您可以简单地在命令的可选参数中指定它\addplot
:
\documentclass{article}
\usepackage{tikz}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot[blue, dashdotted, line width=3pt, domain = 1:10]{x};
\end{axis}
\end{tikzpicture}
\end{document}
请注意,我选择了 3pt 线宽,因为它看起来不会那么臃肿。
编辑
如果您正在谈论情节周围的框,您可以做几乎相同的事情:在[blue, dashdotted, line width=3pt]
后面添加\begin{axis}
。