pgfplots:如何使轴变粗?

pgfplots:如何使轴变粗?

我无法使轴变粗并带有箭头。这是我的代码:enter image description here

\begin{tikzpicture}[xscale=0.8,yscale=0.8]
\begin{axis}[axis line style = thick, domain=0:1, samples=50, axis lines*=middle, xtick={0,1},ytick=\empty,yticklabels={}]
\addplot[color = black]  {2/pi*asin(sqrt(x))};
\end{axis}
\end{tikzpicture}

答案1

由于您使用了选项,因此箭头会消失axis lines*=middle。除了这样做,您还可以axis lines=middle,enlargelimits=true按照下面的示例进行操作。

这些行已包含thick在您的示例中。如果代码下方的注释没有帮助,您必须向我们展示您的情况的可编译 MWE。

% arara: pdflatex

\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.13}

\begin{document}
\begin{tikzpicture}[scale=0.8]
\begin{axis}[%
    ,axis line style = thick
    ,domain=0:1
    ,samples=50
    ,axis lines=middle
    ,enlargelimits=true
    ,xtick={0,1},ytick=\empty
    ,yticklabels={}
    ] 
    \addplot[color = black] {2/pi*asin(sqrt(x))}; 
\end{axis} 
\end{tikzpicture}
\end{document}

enter image description here

相关内容