答案1
欢迎来到 TeX.SX!这个网站上有很多例子。有很多方法可以绘制这样的图表,最流行的可能是使用 Ti钾其中存在一个带有教程的出色手册(正如评论中指出的那样)。
给你一个起点:
\documentclass[tikz]{standalone}
\begin{document}
\begin{tikzpicture}
% origin
\coordinate (o) at (0,0) node[below left] {$0$};
% x axis
\draw[->] (-0.5,0) -- (4,0) node[below] {$t$};
% y axis
\draw[->] (0,-0.5) -- (0,4) node[left] {$R$};
% main plot
\draw[->] (0,0) -- node[above] {$p$} (3,3) node[above right] {$s$};
% coordinate lines
\draw[dashed] (0,3) -- node[above] {$e_1$} (3,3)
-- node[right] {$e_2$} (3,0) node[below] {$c$};
\end{tikzpicture}
\end{document}