答案1
欢迎使用 TeX-SE!您可以使用 实现这一点axis lines=middle
。将来,请为我们提供以 开头\documentclass
和结尾的完整文档\end{document}
。这样那些愿意回答问题的人就不必编造序言了。在这种情况下,我真的不知道dharmic
是什么。无论如何,我认为你正在寻找axis lines=middle
。
\documentclass[tikz,border=3.14mm]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.16}
\begin{document}
\begin{tikzpicture}
\begin{axis}[axis lines=middle,
% dharmic,
% legend pos=north east
xmajorticks=false,
ymajorticks=false,
xticklabels={,,},
xmajorticks=false,
xmin=0, xmax=5, ymin=0, ymax=5,
]
\addplot[domain=0:4] {x};
\end{axis}
\end{tikzpicture}
\end{document}