答案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}