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}
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}
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:

\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}
\medievaltextonly sets the page margins, but doesn't switch totwocolumnmode. Try\documentclass[12pt,twocolumn]{memoir}. – lockstep May 21 '12 at 18:22