最近我开始研究 Latex、tikZ 和 PGF。请告诉我如何将 12 个元素的向量放入程序框图上的矩形块中?
答案1
欢迎,我猜你应该只使用数学模式($some text$)。此外,如果你想使用矩阵,你可能需要使用 amsmath 包。我知道你对 Latex 和 Tikz 还不熟悉,所以也许你应该给自己买一本手册。你想要的一切你都可以在 Tikz/PGF 手册或 LaTeX 文档中搜索。但无论如何,这里有一个例子(未经测试):
\documentclass[tikz]{standalone}
\usepackage{pgfplots}
\usepackage{amsmath}
\begin{document}
\begin{tikzpicture}
\draw (0,0) node[minimum height=2cm, minimum width=3cm, draw] (node1) {$1 \times 1 + 1 - 1 \div 1 = 1$}
(0,-3) node[minimum height=2cm, minimum width=3cm, draw, circle] (node2) {$A = \begin{bmatrix} 2 & 4 \\ 6 & 0 \end{bmatrix}$};
\draw[<->] (node1) -- (node2);
\end{tikzpicture}
\end{document}
如您所见,可以使用以下方法将矩阵插入节点:
$\begin{matrix} 2 & 4 \\ 6 & 0 \end{matrix}$