答案1
如果看不到您使用的代码,就很难提供帮助,但它看起来像是 twocolumn-option 和 multicols 环境的组合。
例子:
\documentclass[twocolumn]{article}
\usepackage[utf8]{inputenc}
\usepackage{multicol}
\usepackage{blindtext}
\begin{document}
\blindtext
\begin{multicols}{2}%Here you define a twocolumn-environment inside one columns
\blindtext
\end{multicols}
\blindtext
\end{document}
您有两列,其中一列中添加了多列环境。这可能是问题的根源。
根据您的需要,您可以
- 根本不要使用 twocolumn 选项。
- 为某些页面切换为一种注释布局(
\onenote
命令后跟\twocolumn
-command 以切换回来)。(注意:这会强制分页) - 使用
table*
-environment 将表格跨越两列(星号 * 是重点!)