如何创建这个顶部带有箭头和文本的简单模型?

如何创建这个顶部带有箭头和文本的简单模型?

如何创建这个顶部带有箭头和文本的简单模型?问候 如何创建这个顶部带有箭头和文本的简单模型?问候

答案1

无需软件包和简单的 LaTeX 命令:

\documentclass{article}
\unitlength=1cm
\newcommand\test[2]{%
\begin{picture}(3,2)
  \put(0,0){\line(1,0){3}}     \put(0,2){\line(1,0){3}}
  \put(1.5,0){\vector(1,2){1}} \put(1.5,0){\vector(-1,2){1}}
  \put(0.45,2.1){#1}\put(2.35,2.1){#2}
\end{picture}}

\begin{document}
\test{G}{A}
\end{document}

在此处输入图片描述

答案2

通常,我们不会回答“为我画这个”或类似的问题,但我感觉很好。

您可以像这样使用 TikZ 包:

\documentclass{article}

\usepackage{tikz}
\tikzset{>=stealth}

\begin{document}
\begin{tikzpicture}
  \draw (-0.5,0) -- (2.5,0) (-0.5,-2) -- (2.5,-2) ;
  \draw [->] (0,0) node [anchor=south] {\(A\)} -- (1,-2) ;
  \draw [->] (1,-2) -- (2,0) node [anchor=south] {\(G_1\)} ;
\end{tikzpicture}
\end{document}

相关内容