尝试了所有的论坛和问题,但没有找到一个可以回答的。
我正在尝试用乳胶为一些表格添加标题。
我有一些表格,有些是旋转的,有些是缩放的。这些表格是我导入的,不是用 latex 编写的(它们来自 python/pandas)
旋转表代码示例:
\begin{adjustbox}{angle=90}
\begin{tabular}{ll}
\input{mytable}
\end{tabular}
\end{adjustbox}
这是我调整大小的
\resizebox{17cm}{!}{
\begin{adjustbox}{angle=90}
\begin{tabular}{ll}
\input{abs hypothesis tables/firsthypothesistable_a}
\end{tabular}
\end{adjustbox}
}
我尝试过几种方法给这些表格添加标题(例如“表格 x:bla bla 表格”),但都没有成功。欢迎任何帮助 :(
答案1
据我回忆,sidewaystable 占据了整个页面。
\documentclass{article}
\usepackage{adjustbox}
\begin{document}
\begin{table}[ht]
\sbox0{\begin{tabular}{|ccc|}
\hline
yada & yada & yada\\
\hline
\end{tabular}}% measure width
\centering
\rotatebox{90}{\begin{minipage}{\wd0}% use width of tabular
\usebox0
\caption{This is the caption}
\end{minipage}}
\end{table}
\end{document}