关于表格中宋体加粗的问题
Opened this issue · 3 comments
Diralpo commented
目前在表格环境里中文无法被加粗
weiquanmao commented
模板中的表2和表3中的标题通过\textbf进行加粗都是有效的啊,你的环境和相关指令是?
Diralpo commented
模板中的表2和表3中的标题通过\textbf进行加粗都是有效的啊,你的环境和相关指令是?
在如下代码表格第一行的模型
两字无法被加粗
\begin{table}[htb]
\centering
\caption{\label{tab:abl}
xx在xx数据集上消融实验结果(\%)
}
\begin{tabular}{lcc}
\Xhline{3\arrayrulewidth}
{\bf 模型} & {p} & {r} \\
\midrule
x1 & 2 & 2 \\
\hdashline
x2 & \bf 4 & \bf 6 \\
\Xhline{3\arrayrulewidth}
\end{tabular}
\end{table}
weiquanmao commented
请使用\textbf
替换\bf
\begin{table}[htb]
\centering
\caption{\label{tab:abl}
xx在xx数据集上消融实验结果(\%)
}
\begin{tabular}{lcc}
\Xhline{3\arrayrulewidth}
{\textbf {模型}} & {p} & {r} \\
\midrule
x1 & 2 & 2 \\
\hdashline
x2 & \bf 4 & \bf 6 \\
\Xhline{3\arrayrulewidth}
\end{tabular}
\end{table}