![如何仅拆分 documentclass[10pt,a4paper]{article} 的 1 页并在一侧垂直添加一个大表格](https://linux22.com/image/321167/%E5%A6%82%E4%BD%95%E4%BB%85%E6%8B%86%E5%88%86%20documentclass%5B10pt%2Ca4paper%5D%7Barticle%7D%20%E7%9A%84%201%20%E9%A1%B5%E5%B9%B6%E5%9C%A8%E4%B8%80%E4%BE%A7%E5%9E%82%E7%9B%B4%E6%B7%BB%E5%8A%A0%E4%B8%80%E4%B8%AA%E5%A4%A7%E8%A1%A8%E6%A0%BC.png)
我想知道如何将整个文档的一页分成两页,并垂直添加表格。事实上,表格太大了,我以前都是在横向模式下在新页面上阅读。
\newpage
\begin{landscape}
\begin{table}[htbp]
...
\end{table}%
\end{landscape}
但现在我想将其披露为:
%table(vertically to fit 1/2 page) | %keep writing my text
附言:最终在以下页面上,我还希望所有内容在单个页面上恢复正常。
答案1
你没有提供任何例子所以这是未经测试的,但是
\usepackage{article}
\usepackage{rotating}
\begin{document}
....
\twocolumn
\begin{sidewaystable}
...
\end{sidewaystable}
text.....
\onecolumn
more text...