如何在 makecell 内部加粗?

如何在 makecell 内部加粗?

我正在使用 makecell 作为表格单元格,

\makecell[ct] {Power \\ Profile}

现在,我需要将内容加粗,因此我使用了

\makecell[ct] {\textbf{Power \\ Profile}}

但它没有编译。我该如何解决?

答案1

放在\bfseries之前\makecell

在此处输入图片描述

\documentclass{article}
\usepackage{makecell}

\begin{document}
\begin{tabular}{l}
\bfseries\makecell[ct]{Power \\ Profile}\\
non bold entry
\end{tabular}
\end{document}

答案2

\textbf{}当使用包含时它也有效\makecell{},如下所示:

\textbf{\makecell{Power \\ Profile}}

(已编辑)

相关内容