在 Latex 模板中绘制此图。(复杂 1)

在 Latex 模板中绘制此图。(复杂 1)

在 Latex 模板中绘制此图。(复杂 1)在 Latex 中绘制此图在此处输入图片描述模板。尊重


尊重地

答案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}

在此处输入图片描述

相关内容