格式化 2 列表格

格式化 2 列表格

我在定位我的 2 列表时遇到了麻烦。虽然它看起来不错,而且一切都井然有序,但它位于页面顶部,而不是位于正确的段落下方。我使用的是 IEEE 文档样式,代码如下:

\begin{table}
\centering
\begin{tabular}{c c c}
\textbf{Parameter} & \textbf{Definition} & \textbf{Value}\\
A & Density of Degraded ECM & N/A\\
\si{\gamma} & Production Rate of Attractants & 0.5\\
M & Concentration of ECM Degrading Enzymes & N/A\\
N & Number of Tumor Cells & N/A\\
\si{X_a} & Diffusion Coefficient of Digested ECM & 0.01\\
\si{\mu_a} & Decay Rate of Digested ECM & 0.01\\
\end{tabular}
\end{table}

在此处输入图片描述

答案1

似乎没有必要或不希望将tabular材料放在设计为“浮动”的环境中table——这是 LaTeX 特有的词义。我会将表格材料装入环境中center

我还会 (a) 将三列左对齐而不是居中,以及 (b) 在标题行和表格材料的其余部分之间插入一些空白。

\gamma顺便问一下,封装在指令中的目的是什么\si?乍一看,写起来$\gamma$似乎更直接。

在此处输入图片描述

\documentclass{IEEEtran}
\usepackage{siunitx} % for \si macro
\begin{document}
\hrule % just to illustrate width of textblock
\smallskip\noindent
\dots\ where the following parameters were used:
\begin{center}
\small
\begin{tabular}{@{}lll@{}}
\textbf{Parameter} & \textbf{Definition} & \textbf{Value}\\[0.5ex]
A           & Density of Degraded ECM & N/A\\
\si{\gamma} & Production Rate of Attractants & 0.5\\
M           & Concentration of ECM Degrading Enzymes & N/A\\
N           & Number of Tumor Cells & N/A\\
\si{X_a}    & Diffusion Coefficient of Digested ECM & 0.01\\
\si{\mu_a}  & Decay Rate of Digested ECM & 0.01\\
\end{tabular}
\end{center}
Some more text after the \verb+center+ environment \dots
\end{document}

相关内容