我怎样才能在 LaTeX 中制作这个图表/图解?

我怎样才能在 LaTeX 中制作这个图表/图解?

图表

你好,有人可以帮我用 LaTeX 制作这个图表吗?

答案1

本网站的目的不是让别人将屏幕截图翻译成 LaTeX 代码。您会发现自己做这些事情更令人满意。下面是我制作的社区 Wiki,它的作用与此类似。

\documentclass[tikz,border=3.14mm]{standalone}
\begin{document}
\begin{tikzpicture}
 \draw[stealth-stealth] (0,4) node[above]{payoff} |- (5,0) node[below] {$S(2)$};
 \draw (2,0) node[below]{$K$} -- ++ (2,3) coordinate[pos=0.8] (aux1) node[above,align=center](alm) {alm\\ call};
 \draw (2,0) to[out=60,in=-90]   coordinate[pos=0.8] (aux2) (3,3)
 node[left=1.5cm,align=center](pft){boosted\\ call};
 \draw[-stealth,shorten >=3pt] (alm.-170) to[bend right] (aux1);
 \draw[-stealth,shorten >=3pt] (pft) to[bend right] (aux2);
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容