tikz 中行距过大且字体大小不同(\footnotesized)

tikz 中行距过大且字体大小不同(\footnotesized)

我想减小 tikz 节点内的字体大小。我基本上想要一个正常大小的标题词,然后在\footnotesized 字体上在其下方放置多行说明。但字体大小命令不适用于换行符。换行符保持原始大小

梅威瑟:

\documentclass{article}
\usepackage{tikz}

\begin{document}
    \begin{tikzpicture}
    \node[circle, draw, align=center](lexeme){Lexeme\\ \footnotesize e.g. \\ \footnotesize \{ go, going,\\ \footnotesize goes, went\}};
    \end{tikzpicture}
\end{document}

间距不正确的示例

密切相关:投影仪中的行距太大且字体大小不同(\tiny),但该解决方案不适用于 tikz

答案1

像这样?

在此处输入图片描述

\documentclass{article}
\usepackage{tikz}

\begin{document}
    \begin{tikzpicture}
    \node[circle, draw, align=center, font=\footnotesize](lexeme)
        {{\normalsize Lexeme}\\
         e.g.  go, going,\\
         goes, went};
    \end{tikzpicture}
\end{document}

相关内容