如何用 TikZ 复制图形

如何用 TikZ 复制图形

我正在尝试使用 Latex 自身的图形制作功能来复制该图形。

在此处输入图片描述

搜索后我发现了 TikZ 模块,它可以在 Latex 中绘制漂亮的图形,但不知道如何使用这个模块。

答案1

给你一个开始。

\documentclass[tikz,border=3mm]{standalone}
\usetikzlibrary{decorations.pathreplacing}
\begin{document}
\begin{tikzpicture}[font=\sffamily,>=stealth,thick]
 \draw[very thick] (0,0) -- (8,0) node[midway,below] {ble ble};
 \draw[<->] (0,0.5) -- ++ (4,0) node[pos=0.3,above]{bla bla};
 \draw[<->] (8,0.5) -- ++ (-2.5,0) node[pos=0.95,anchor=south west]{CCCCC};
 \draw[decorate,decoration={brace,mirror}] (8,1.5) -- ++ (-4.5,0)
     node[midway,above=2pt]{AAAA};
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容