当我在 Tikz 图形中添加一些文本时,它还会显示边界框,我该如何摆脱它。(我的例子来自:TikZ 添加文本)
以下是我得到的信息:
\begin{figure}
\begin{tikzpicture}[scale=.8]
\draw (0,1.3) node[below] {$B$} --
(3,1.3) node[below] {$C$} --
(1.5,4.3) node[above] {$A$} -- cycle;
\draw (1.5,4.3) -- (1.5,1.3) node[below] {$D$};
\draw (1.5,1.5) -- (1.7,1.5) -- (1.7,1.3);
\node[draw,text width=3cm] at (4.5,4) {some text spanning three lines with automatic line breaks};
\end{tikzpicture}
\end{figure}
答案1
draw
节点选项列表中的键告诉 TikZ 在节点周围绘制节点形状。默认节点形状是。rectangle
这就是为什么使用键将节点装箱的原因draw
。
draw
从选项中删除该键node
以不绘制节点:
代码
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw (0,1.3) node[below] {$B$} -- (3,1.3) node[below] {$C$} --
(1.5,4.3) node[above] {$A$} -- cycle;
\draw (1.5,4.3) -- (1.5,1.3) node[below] {$D$};
\draw (1.5,1.5) -- (1.7,1.5) -- (1.7,1.3);
\node[text width=3cm] at (4.5,4)
{some text spanning three lines with automatic line breaks};
\end{tikzpicture}
\end{document}