CheckBoxStudio / BUAAThesis

北航研究生学位论文模板(Word+LaTeX).
MIT License
517 stars 109 forks source link

关于表格中宋体加粗的问题 #65

Open Diralpo opened 1 year ago

Diralpo commented 1 year ago

目前在表格环境里中文无法被加粗

weiquanmao commented 1 year ago

模板中的表2和表3中的标题通过\textbf进行加粗都是有效的啊,你的环境和相关指令是?

Diralpo commented 1 year ago

模板中的表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 1 year ago

请使用\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}