次のコードがテキスト区切り (\\) でエラーを生成する理由は何ですか?
\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}