5

I'm trying to use the memoir class \medievalpage command and cannot get it to work. Here is my effort:

\documentclass[12pt]{memoir}
\usepackage{lipsum}
\medievalpage
\checkandfixthelayout

\begin{document}
\lipsum
\end{document}  
lockstep
  • 250,273
mokane
  • 51

2 Answers2

6

The \medievalpage, sets the page geometry to comply with classic page proportions. To get it to two column use:

  \documentclass[twoside,twocolumn]{memoir}
  \medievalpage
  \checkandfixthelayout

This should give a page similar to the image below:

enter image description here

yannisl
  • 117,160
4

\medievalpage only sets the page margins, but doesn't switch to twocolumn mode -- for the latter, you have to add the twocolumn class option. Additionally, I suggest to enlarge the space between columns (LaTeX's default value of 10pt is too small IMO) and to load the microtype package -- its protrusion and font expansion features result in better line breaks for small columns.

\documentclass[12pt,twocolumn]{memoir}

\medievalpage
\checkandfixthelayout

\setlength{\columnsep}{20pt}

\usepackage{microtype}

\usepackage{lipsum}

\begin{document}

\lipsum

\end{document}  
lockstep
  • 250,273