我需要使用 tikz 在节点上显示两行文本。我使用的代码是:
\documentclass{book}
\usepackage{pgf,tikz}
\usetikzlibrary{arrows.meta}
\begin{document}
\begin{tikzpicture}
\draw[black, -{Stealth[length=3mm]}] (1,5) -- (3,5)
node[right, green, anchor = south west] {first language text}
node[right, blue, anchor = north west] {second language text};
\end{tikzpicture}
\end{document}
此代码产生如下结果:
有一个问题,两条线之间的垂直距离太大。我怎样才能在不创建新节点的情况下缩小这个距离?