绘制简单的 xy 轴

绘制简单的 xy 轴

有人能帮我制作这个吗?我在论坛上找不到类似的东西。不需要网格。

在此处输入图片描述

谢谢你,

米罗纳斯

答案1

\documentclass{article}
\usepackage{pst-plot}
\begin{document}
\begin{pspicture}(-2,-2)(6,5)
\psaxes[labels=none,ticks=none]{->}(0,0)(-2,-2)(6,5)
\psplot[linewidth=1.5pt,algebraic,yMaxValue=4.5]{0.1}{5.5}{1/x}
\end{pspicture}
\end{document}

在此处输入图片描述

答案2

带有一些颜色(和名称):

\documentclass[x11names, border=3pt]{standalone}
\usepackage{pstricks-add}
\usepackage{auto-pst-pdf}

\begin{document}

\begin{pspicture*}(-2.5,-2)(5,4)
\psset{algebraic, arrowinset=0.125, arrowsize=3pt, linejoin=1}
\psaxes[linecolor=OrangeRed2!80, ticks=none, labels=none, arrows=-](0,0)(-2.5,-2)(5,4) [$x$,-135] [$y$,-135]
\uput[dl](0,0){$O$}
\psset{linewidth=1.5pt, linecolor=DarkOliveGreen3, plotpoints=100, plotstyle=curve}
\psplot{0.255}{4.85}{1/x}
\end{pspicture*}

\end{document} 

在此处输入图片描述

相关内容