我有一张与文本重叠的 TikZ 图片。我相信这个很容易,但我没有找到解决方案。
以下是快照:
代码如下:
\section{Algorithm Outline}
blabla
\begin{figure}[H]
\selectlanguage{american}%
\begin{centering}
\ttfamily
\begin{tikzpicture}[node distance = 2cm,
auto, x=1cm, y=1cm, transform canvas={scale=0.62},
>=stealth]
[picture code]
\end{tikzpicture}
\par\end{centering}
\selectlanguage{english}%
\caption{Algorithm Outline}
\end{figure}
The focus of this paper is on finding a feasible and good ....
我希望有人有解决方案。
答案1
发生这种情况的原因是您正在使用变换画布,这导致 PGF“失去对节点位置和图片大小的跟踪”(PGF 手册)。
设置scale=0.62, every node/.append style={transform shape}
为使用“正确”的方式来缩放您的tikzpicture
。