如何用 Latex 绘制 Neilian 抛物线?

如何用 Latex 绘制 Neilian 抛物线?

我想用 Latex 绘制 Neilian 抛物线。问题当然是曲线在零点处有一个奇点,这会导致绘制曲线时出现错误。

我已经在网上搜索了好的教程,但似乎没有。如果能提供任何帮助或提示,我将不胜感激!

答案1

这是一个pstricks解决方案:

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

\begin{document}

\psset{algebraic=true,dimen=middle, arrowsize=3pt 2,arrowinset=0.15,unit=1.5,plotpoints=100, labelsep=2ex}
\begin{pspicture*}(-2,-4)(5,4)
\psaxes[linecolor=LightSteelBlue3,xAxis=true,yAxis=true,labels=none,ticks=none]{->}(0,0)(-2,-4)(5,4)[$x$,-120][$y$,-130]
 \psset{linecolor =IndianRed3, linewidth = 1.2pt}
 \parametricplot{-2.5}{2.5}{2*t^2 | t^3}
\end{pspicture*}

\end{document} 

在此处输入图片描述

相关内容