标题和表格之间的距离(ACM SIG)

标题和表格之间的距离(ACM SIG)

我在 LaTeX 中使用 ACM SIG 格式(编辑示例)。我想添加表格,我也这样做了,但是标题和表格之间的距离很奇怪。

表格1还可以,但中间的空间太小了表 2。 我如何解决它?

在此处输入图片描述

表格代码:

\begin{table} 
\centering 
\caption{Some Typical Commands} 
\begin{tabular}{|c|c|c|} \hline Command&A Number&Comments\\ \hline \texttt{{\char'134}alignauthor} & 100& Author alignment\\ \hline \texttt{{\char'134}numberofauthors}& 200& Author enumeration\\ \hline \texttt{{\char'134}table}& 300 & For tables\\ \hline \texttt{{\char'134}table*}& 400& For wider tables\\ \hline\end{tabular} \end{table}

我正在使用sig-alternate-05-2015文档类。

答案1

请注意,第二条标题中的任何字母都没有降部组件,即突出于基线以下的组件。我建议您将第二条指令更改\caption

\caption{Parameters of DRAM and NAND Flash\strut}

\strutLaTeX 内核提供的指令插入一个(还有什么?)“印刷支柱”,其深度为0.3\baselineskip,高度为0.7\baselineskip(宽度为零,使对象不可见)。


这是使用文档类的 MWE 。观察指令对第二个标题位置的sig-alternate-05-2015影响。\strut

在此处输入图片描述

\documentclass{sig-alternate-05-2015}
\newcommand\mytab{% a little test tabular...
    \begin{tabular}{|c|c|c|}
    \hline
    Parameter & DRAM & NAND Flash\\
    \hline
    Access Latency & 40ns & 1.5 (ms/blk) \\
    \hline
    \end{tabular}}
\begin{document}
\begin{table}
\centering

\caption{Parameters of DRAM and NAND Flash}
\mytab

\bigskip

\caption{Parameters of DRAM and NAND Flash\strut}
\mytab

\end{table}
\end{document}

相关内容