答え1
これは他の人に仕事を任せるためのページではありませんが、私がお手伝いします。自分で表を完成させることができると思います。この質問私のアプローチが気に入らない場合は。
私は、見栄えの良い表のパッケージとSI 単位の正しいタイプセットのパッケージtabular
を併用して、これに標準を使用するだけです。booktabs
siunitx
下付き文字がない数学的なオブジェクト(インデックス、カウンターなど)であるが、「通常の言語の意味」(「酸素」の「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
ここ)なので、それに応じてコードを変更しました。