如何在附录页面顶部放置表格(IEEE 裸会议模板)

如何在附录页面顶部放置表格(IEEE 裸会议模板)

我正在使用 IEEEbare_conf模板。我的文档中有几个表格。一个是两列表格,将放在单独的页面中。但是,表格显示在页面中间。请注意,这是文档中的最后一个表格。我尝试了不同的组合,但由于其他表格的组合,无法将其放置在其他地方。

在此处输入图片描述

这是我的代码:

\newcolumntype{b}{>{\hsize=0.675\hsize}X}
\newcolumntype{s}{>{\hsize=0.325\hsize}X}
\begin{table*}[t!]
\centering
\caption{Sample Table}
\label{tags-keywords-table}
\begin{tabularx}{\textwidth} {|b | s |}
 \hline
 \multicolumn{1}{|c|}{\textbf{Column1}} &
  \multicolumn{1}{c|}{\textbf{Column2}}\\
 \hline \hline
 Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.


 
 &  Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries \\
\hline
\end{tabularx}
\end{table*}

我尝试使用ht!或,htp但无法将表格放置在没有其他内容的页面顶部。我在这里遗漏了什么?

答案1

您可以尝试将类似这样的内容添加到您的文档中。不过,它可能会影响您的其他表格,因此请检查它们是否仍然正常。

 % force tables to top of page, 25pt space
\makeatletter
\setlength{\@fptop}{25pt}
\makeatother

相关内容