导入表定位

导入表定位

我正在将数据表导入文档,并希望表格位于文本内。当我使用 导入时\input{bodyrate}[htpb],表格被放置在文档末尾并被[htpb]打印出来。如何将表格放在 .tex 文件中导入的位置?

\documentclass[preprint]{aastex}
\begin{document}
\input{file}[htpb]
\end{document}

表格文件开头为:

\begin{deluxetable}{lccc}
\tablecolumns{4}
\tablewidth{0pc}

答案1

\clearpage你应该总是在你的问题中包含一个完整的文档(请不要再问同样的问题),但是你总是可以通过使用so来停止浮动

\documentclass[preprint]{aastex}
\begin{document}
text
\clearpage
\input{file}
\clearpage
text
\end{document}

答案2

要输入出现在下一个可用空间的浮动表,您应该使用环境table

\begin{table}
  \input{bodyrate} % Here you put the actual table.
\end{table}

ht和参数指定表格在页面上的位置。使用全部四个参数表示表格可以放置在任何位置。不使用任何参数也可以达到同样的效果bp

相关内容