我希望得到以下东西:
Chapter 2 - Foo
This is an introductory paragraph, spanning over the
whole width of the document.
This is the body of the | due to the use of the
chapter which is written | 'book' class with the
on two separate columns | 'twocolumn' option.
我怎样才能实现这种布局?
编辑:我不想使用多列,因为它将在每个章节中用来明确指定应该是什么默认行为我的文档(即两列)。因此,引用的问题不是重复的。
答案1
如果您使用 KOMA-Script 书籍类,scrbook
则可用于\setchapterpreamble
设置跨序言的列。 可以通过重新定义来实现所需的章节标题格式\chapterformat
:
\documentclass[twocolumn]{scrbook}
\usepackage{mwe}
\renewcommand*{\chapterformat}{\chapapp~\thechapter~--~}
\begin{document}
\setchapterpreamble{This is an introductory paragraph, spanning over the
whole width of the document.\bigskip}
\chapter{Title}
\Blindtext[4]
\end{document}
答案2
您应该使用multicol
包:
\documentclass{book}
\usepackage{multicol,lipsum}
\begin{document}
\chapter{Title}
This is an introductory paragraph, spanning over the
whole width of the document.
\begin{multicols}{2}
\lipsum
\end{multicols}
\end{document}