我定义了一个 TikZ 块。其中的文本未垂直对齐到顶部。以下是我正在使用的代码:
\begin{tikzpicture}[node distance = 6cm, auto]
\node [block, right of=interface] (conn) {
\small ConnectedTo
\linebreak
\tiny
\setlength{\leftmargini}{1.5em}
\vspace{-4 mm}
\begin{itemize}
\itemsep0em
\item Status: Up
\end{itemize}};
\end{tikzpicture}
生成的图像为:
有没有办法将文本对齐到“左上角”?
答案1
将文本放在单独的节点中,并相应地放置
\node[below right] at (conn.north west) {Your text};