LaTeX三线表的加粗

2019-05-24
#LaTeX

1. 常用的三线表

    \documentclass[UTF8]{ctexart}
    \begin{document}

    \begin{tabular}{ccc}
    \hline
    姓名& 学号& 性别\\
    \hline
    Steve Jobs& 001& Male\\
    Bill Gates& 002& Female\\
    \hline
    \end{tabular}

    \end{document}

2. 加粗后的三线表

    \documentclass[UTF8]{ctexart}
    \usepackage{booktabs} %需要加载宏包{booktabs}
    \begin{document}

    \begin{tabular}{ccc}
    \toprule  %添加表格头部粗线
    姓名& 学号& 性别\\
    \midrule  %添加表格中横线
    Steve Jobs& 001& Male\\
    Bill Gates& 002& Female\\
    \bottomrule %添加表格底部粗线
    \end{tabular}

    \end{document}