以下代码产生带有文本中断(\\)的错误的原因是什么
\node (text_1) [draw=none, below=1cm of func, align=left, xshift=1.5cm,yshift=-1cm]
{
\begingroup
\fontsize{9pt}{7.2}\selectfont
{Some \\ code}
\endgroup
}
答案1
您需要一个text width
键来允许多行文本,同时指定小于字体大小的基线间距似乎很奇怪。大小更改应始终包括段落结尾,因此我删除了该组,最后似乎缺少;
tikz 语法。
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\node (text_1) [draw=none, align=left,
xshift=1.5cm,yshift=-1cm,text width=3cm,font=\small]
{
Some \\ code
};
\end{tikzpicture}
\end{document}