如何创建特定形式的表?

如何创建特定形式的表?

我无法在 Latex 上创建此表 在此处输入图片描述

答案1

以下是您餐桌的一些可能用途:

\documentclass{article}
    \usepackage{mdwtab,booktabs}
    \usepackage{pifont}

    \begin{document}
    \sffamily
    \begin{tabular}{|c|l|c|}
    \hline
No  &   Name    &   sex \\  \hline
1   &   Euler   &   M   \\  \hline
2   &   Noether &   F   \\  \hline
3   &   Gauss   &   M   \\  \hline
    \end{tabular}
\quad
    \begin{tabular}{|c|l|c|}
    \hline
No  &   Name    &   sex \\  \hline
\ding{192}      &   Euler   &   M   \\  \hline
\ding{193}      &   Noether &   F   \\  \hline
\ding{194}      &   Gauss   &   M   \\  \hline
    \end{tabular}
\quad
    \begin{tabular}{|c|l|c|}
    \hlx{hv}
No  &   Name    &   sex \\  \hlx{hv}
\ding{192}      &   Euler   &   M   \\  \hlx{vhv}
\ding{193}      &   Noether &   F   \\  \hlx{vhv}
\ding{194}      &   Gauss   &   M   \\  \hlx{vh}
    \end{tabular}
\quad
    \begin{tabular}{clc}
    \toprule
No  &   Name    &   sex \\  \midrule
1   &   Euler   &   M   \\  
2   &   Noether &   F   \\  
3   &   Gauss   &   M   \\  \bottomrule
    \end{tabular}
    \end{document}

在此处输入图片描述

No在文档中搜索,symbols-a4.pdf可能就在其中的某个地方。

相关内容