如何修改 pgfplots 箭头?

如何修改 pgfplots 箭头?

代码

\documentclass[10pt,reqno]{amsart}
\usepackage{pgfplots}
\begin{document}
    \begin{tikzpicture}[arrow1/.style={->,color=black,solid}]
        \begin{axis}
            \addplot [arrow1] coordinates{(0,0) (1,1)};
        \end{axis}
    \end{tikzpicture}
\end{document}

生产

用箭头绘制

您几乎看不到的是箭头。我该如何修改箭头,例如将其放大以使其更明显是箭头?

答案1

TikZ 中的库arrows.meta可让您使用箭头做各种事情。请参阅 TikZ 手册(第 16.5 节)以获取完整参考。

在此处输入图片描述

\documentclass[10pt,reqno]{amsart}
\usepackage{pgfplots}
\usetikzlibrary{arrows.meta}
\begin{document}
    \begin{tikzpicture}[
      arrow1/.style={
       -{Classical TikZ Rightarrow[width=10pt,length=10pt,line width=2pt]},
        color=black,solid}]
        \begin{axis}
            \addplot [arrow1] coordinates{(0,0) (1,1)};
        \end{axis}
    \end{tikzpicture}
\end{document}

相关内容