获取 makecell thead 来模拟表格环境的字体大小?

获取 makecell thead 来模拟表格环境的字体大小?

我有一个定义如下的表:

\begin{table}[]
\tiny

它包含一个粗体表格标题,单词之间有换行符。

\textbf{\thead{word1 \\ word2}}

我按照以下方式将其添加到我的序言中这个答案,因为\makecell\thead将字体大小设置为\footnotesize

\usepackage{makecell}
\renewcommand\theadfont{\normalsize}

我如何获得\makecell\thead模拟表格环境?有时我的表格使用字体大小\normalsize,有时\tiny使用其他字体大小。

答案1

如果你不想让命令改变字体,那么

 \renewcommand\theadfont{}

相关内容