1

Here is what I wish to have:

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.

How can I achieve this layout?

Edit: I do not want to use multicol since it would be used on each chapter to explicitely specify what should be the default behaviour of my document (i.e. two columns). As such, the referenced question is not a duplicate.

2 Answers2

2

If you are using the KOMA-Script book class scrbook you can use \setchapterpreamble to set the columns spanning preamble. The wanted chapter head formatting can be achieved redefining \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}

enter image description here

Schweinebacke
  • 26,336
1

You should use multicol package:

\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}
  • This is something I thought about, but it seemed unwise to use a multicol for what should be the normal behaviour of my text (the specific behaviour one one column becoming the norm). So I was looking for another solution. – Silverspur Nov 29 '17 at 15:22