다음 코드에서 텍스트 나누기(\\) 오류가 발생하는 이유는 무엇입니까?
\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}