以下程式碼產生文字中斷 (\\) 錯誤的原因是什麼
\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}