我正在使用双列模式的类编写文档report
,但我需要\section
分布在两列上,但我该如何设置呢?
就像是
\documentclass[10pt,danish,a4paper,twoside,twocolumn]{report}
\input{preamble.tex}
\begin{document}
% This section should spread over both columns
\section{Name}
\lipsum[1-3]
\end{document}
答案1
有一个开关\onecolumn
::
\documentclass[10pt,a4paper,twoside,twocolumn, english]{report}
\usepackage{lipsum, babel}
%\input{preamble.tex}
\begin{document}
\lipsum
% This section should spread over both columns
\onecolumn
\section{Name}
\lipsum[1-3]
\end{document}
但该部分必须在新页面开始。要返回到双列吗?是的,\twocolumn
。