在我的工作中,我有一个table
需要旋转的内容。我已经这样做了,但它仍然停留在页面末尾。有没有更好的方法来旋转和集中它;或者只是集中它?
我 \usepackage{rotating}
在文档的开头使用了,并使用创建了表格sidewaystable
,例如:
\begin{sidewaystable} [t]\scriptsize
\caption{ConvNet Configuration}\label{tab:1}
\begin{tabular}{*{6}{c}}
\hline
...
\hline
\end{tabular}
\end{sidewaystable}
输出为:
编辑:文档片段是这里因为它很长
答案1
我通过{center}
在文档上使用标签解决了这个问题:
\begin{sidewaystable}[t]\scriptsize
\caption{ConvNet Configuration}\label{tab:1}
\begin{center}
\begin{tabular}{*{6}{l}}
\hline
...
\hline
\end{tabular}
\end{center}
\end{sidewaystable}