使用 pstricks 绘制轴

使用 pstricks 绘制轴

我怎样才能在 LaTeX 中绘制类似附件中所示的内容?

图形

我听说过pstricks,但不太熟悉。如果有好的教程,我将不胜感激,请与我分享。

答案1

我选择了一个简单的函数。使用xelatex或序列运行latex-> dvips->s2pdf or use packageauto-pst-pdf and run withpdflatex --shell-escape`:

\documentclass{article}
\usepackage{pst-plot}
\begin{document}

\psset{xunit=1.3}
\begin{pspicture}(-1,-1)(7,4)
\psaxes[labels=none,ticks=none]{->}(7,4)[$x$,-90][$\mu(x)$,180]
\psplot[algebraic]{0}{6.5}{(2*x-1)/(x+4)+1}
\multido{\iA=0+1}{7}{%
  \psline[arrows=-*,linestyle=dashed](\iA,0)(* {\iA} {(2*x-1)/(x+4)+1})}
\multido{\iA=1+1,\iB=5+-1}{5}{\psxTick(\iA){x-\iB h}}
\psxTick(0){0}\psxTick(6){x}
\end{pspicture}

\end{document} 

在此处输入图片描述

相关内容