tikz 中的凹曲线

tikz 中的凹曲线

在没有任何数字数据的情况下,我们如何绘制像下面这样的凹曲线?

在此处输入图片描述

答案1

在我看来,没有数值数据的绘画可能是不可能的。

没有使用 PSTricks:

\documentclass[tikz,border=12pt]{standalone}
\begin{document}
\begin{tikzpicture}
    \draw (2,0) arc [x radius=2, y radius=1, start angle=0, end angle=90];% or the old, deprecated, less verbose version \draw (2,0) arc (0:90:2 and 1);
    \draw (-.1,0) -- (2.1,0);
    \draw (0,-.1) -- (0,1.1);
\end{tikzpicture}
\end{document}

在此处输入图片描述

使用 PSTricks:

\documentclass[pstricks,border=12pt]{standalone}
\begin{document}
\begin{pspicture}(-.1,-.1)(2.1,1.1)
    \psellipticarc(0,0)(2,1){0}{90}
    \psline(-.1,0)(2.1,0)
    \psline(0,-.1)(0,1.1)
\end{pspicture}
\end{document}

在此处输入图片描述

相关内容