我不太熟悉 tikz 包。在网上读了好几遍,我设法做到了这一点
\begin{tikzpicture}
[node distance=.8cm,
start chain=going below,]
\node[punktchain, join] (Telegrapher){Telegrapher's equations $\begin{aligned}
\frac{d}{d z} {\vec V} \left(z,s\right) &=-\vec Z'(s){\vec I}\left(z,s\right) \\
\frac{d}{d z} {\vec I} \left(z,s\right) &=-\vec Y'(s){\vec V} \left(z,s\right)\label{test}
\end{aligned}$};
\node[punktchain, join] (test) {test};
\end{tikzpicture}
对于节点有如下定义:
\usepackage{tikz}
\usetikzlibrary{calc,trees,positioning,arrows,chains,shapes.geometric,%
decorations.pathreplacing,decorations.pathmorphing,shapes,%
matrix,shapes.symbols}
\tikzset{
>=stealth',
punktchain/.style={
rectangle,
rounded corners,
% fill=black!10,
draw=black, very thick,
text width=25em,
minimum height=3em,
text centered,
on chain},
line/.style={draw, thick, <-},
element/.style={
tape,
top color=white,
bottom color=blue!50!black!60!,
minimum width=8em,
draw=blue!40!black!90, very thick,
text width=10em,
minimum height=3.5em,
text centered,
on chain},
every join/.style={->, thick,shorten >=1pt},
decoration={brace},
tuborg/.style={decorate},
tubnode/.style={midway, right=2pt},
}
现在我的问题是:在我的节点中,我有一个方程式。我希望它像我的 latex 中的所有其他方程式一样被编号,或者至少我希望能够引用它。现在我已经使用了 \label{test}
,但是当我引用时,\ref{label}
它似乎将该部分作为参考。
您知道如何在图表中正确引用节点内部构建的方程式吗?
答案1
由于评论中提出了解决方案,但从未将其作为答案发布,因此这里是解决方案,供将来遇到此问题的人使用。此问题的评论中的用户功不可没。
如果您想要引用方程编号,请使用equation
或align
环境,但默认情况下,这在 TikZ 节点内不起作用。因此,您可以将其包装在 minipage: \begin{minipage}{0.9\textwidth}
...中\end{minipage}
,这样就可以使用align
。现在,交叉引用可以照常工作,甚至可以与 一起使用hyperref
。
另外,还有一点小问题:如果你只是使用常规大小的括号,最好使用(
and)
而不是\left(
and \right)
,因为间距更好一些。参见这个帖子更多细节。
以下是实现该功能的代码。
\documentclass{article}
\usepackage{amsmath}
\usepackage{tikz}
\usetikzlibrary{calc,trees,positioning,arrows,chains,shapes.geometric,%
decorations.pathreplacing,decorations.pathmorphing,shapes,%
matrix,shapes.symbols}
\tikzset{
% ... same settings as in the question post ...
}
\usepackage[colorlinks=true]{hyperref}
\begin{document}
\begin{tikzpicture}
[node distance=.8cm,
start chain=going below,]
\node[punktchain, join] (Telegrapher){Telegrapher's equations
% Here's the difference: a minipage and align environment
\begin{minipage}{0.9\textwidth}
\begin{align}
% now, we can use \label, \ref, and \eqref as usual
\frac{d}{d z} \vec V(z,s) &= -\vec Z'(s)\vec I(z,s) \label{test1}\\
\frac{d}{d z} \vec I(z,s) &= -\vec Y'(s)\vec V(z,s) \label{test2}
\end{align}
\end{minipage}};
% Reference from another node
\node[punktchain, join] (test) {Test: reference to equation~\eqref{test1}.};
\end{tikzpicture}
% References from outside the tikzpicture also work
Reference to equation~\eqref{test2}.
\end{document}
这是 PDF 输出的图片。