문제:이 명령은 \twocolumn
로 지정된 LaTeX 문서에 페이지 나누기를 생성합니다 \documentclass[twocolumn]{report}
. 이 문서 클래스 사양은 변경할 수 없습니다.
질문:명령 앞에 페이지 나누기를 억제하는 방법이 있습니까 \twocolumn
?
코드 예:
\documentclass[twocolumn]{report}
\begin{document}
Two column text
% Goal: suppress page break here
\twocolumn[
One column text
]
\end{document}
답변1
[twocolumn]에서 시작한다고 해서 거기에 머물러야 한다는 의미는 아닙니다.
\documentclass[twocolumn]{report}
\usepackage{multicol}
\usepackage{lipsum}% MWE only
\begin{document}
\onecolumn\begin{multicols}{2}
\lipsum[1]
\end{multicols}
\lipsum[2]
\end{document}