下图的三列命名编码

下图的三列命名编码

在此处输入图片描述

创建三列命名法很难,帮帮我

答案1

虽然这真的不是一个让别人帮你做工作的页面,但我会帮助你。我相信你可以自己完成表格。你也可以看看这个问题如果你不喜欢我的方法。

我只是使用一个标准tabular来实现这一点,同时使用booktabs美观的表格包和siunitx正确排版 SI 单位的包。

注意,如果下标是不是一个数学对象(索引、计数器等),但具有“正常语言含义”(如“o”代表“氧气”、“max”代表“最大值”等),您应该将其直立放置(a_\mathrm{b})。

\documentclass{article}
\usepackage{siunitx,booktabs}

\begin{document}
    \begin{table}[htbp]
        \centering
        \caption{Nomenclature.}
        \label{tab:my_label}
        \begin{tabular}{lll}
            \toprule
            \textbf{Symbol} & \textbf{Description}                       & \textbf{Unit}                    \\ \midrule
            $D$             & Diffusion coefficient in the Biofilm phase & \unit{\meter\squared\per\second} \\
            $D_o$           & Diffusion coefficient in the Gas phase     & \unit{\meter\squared\per\second} \\ 
            \ldots          & \ldots                                     & \ldots                           \\ \bottomrule
        \end{tabular}
    \end{table}
\end{document}

结果

编辑

显然在较新版本中siunitx应该使用\unit\si(参见这里),因此我相应地修改了代码。

相关内容