如何找到回忆录的双栏模式边距设置?

如何找到回忆录的双栏模式边距设置?

我有一份很长的文档,不想使用twocolumn模式,但我喜欢它使用的边距。我将手动使用它multicol来创建两列(这样我就可以轻松地将脚注和其他内容放在一列中)。

比较

\documentclass[12pt,twocolumn]{memoir}
\usepackage{lipsum}

\begin{document}
\lipsum
\end{document}

\documentclass[12pt]{memoir}
\usepackage{lipsum}
\usepackage{multicol}

\begin{document}
\begin{multicols}{2}
\lipsum
\end{multicols}
\end{document}

第二个文档的默认边距要宽得多。有没有办法查看给定文档中的边距memoir并将其复制到另一个文档中?

(我这样做的原因是这个问题让我相信该twocolumn选项并不能真正满足我的需要。

答案1

memoir提供我认为可以提供您想要的信息的设施(文档第 25 页)。

\documentclass[12pt,twocolumn]{memoir}
\usepackage{lipsum}
\settypeoutlayoutunit{mm}% note: needs to come *first* to have any effect (documentation is wrong)
\typeoutlayout
\typeoutstandardlayout
\begin{document}
\lipsum
\end{document}

然后输出包括此信息:

******************************************************
Stock height and width: 279.39671mm by 215.89746mm
Top and edge trims: 0mm and 0mm
Page height and width: 279.39671mm by 215.89746mm
Text height and width: 192.77344mm by 164.83272mm
Spine and edge margins: 20.47931mm and 30.58543mm
Upper and lower margins: 43.80676mm and 42.8165mm
Headheight and headsep: 5.0961mm and 6.98476mm
Footskip: 10.54367mm
Columnsep and columnseprule: 3.51456mm and 0mm
Marginparsep and marginparwidth: 3.51456mm and 16.86987mm
Sidecapsep and sidecapwidth: 3.51456mm and 16.86987mm
Sidebarhsep and sidebarwidth: 3.51456mm and 16.86987mm
Sidebarvsep and sidebartopsep: 5.0961mm and 0mm
Sidebarheight: 192.12323mm
Sidefoothsep and sidefootwidth: 3.51456mm and 16.86987mm
Sidefootvsep and sidefootheight: 5.0961mm and 192.12323mm
******************************************************


******************************************************
Page height and width: 279.39671mm by 215.89746mm
Text height and width: 192.77344mm by 164.83272mm
Oddside and evenside margins: -4.92038mm and 4.92038mm
Topmargin and footskip: 6.3262mm and 10.54367mm
Headheight and headsep: 5.0961mm and 6.98476mm
Columnsep and columnseprule: 3.51456mm and 0mm
Marginparsep and marginparwidth: 3.51456mm and 16.86987mm
******************************************************

所以我想你想要这样的东西:

\documentclass[12pt]{memoir}
\usepackage{lipsum}
\setlength{\textwidth}{164.83272mm}
\setlength{\marginparsep}{3.51456mm}
\setlength{\marginparwidth}{16.86987mm}
\setlength{\oddsidemargin}{-4.92038mm}
\setlength{\evensidemargin}{4.92038mm}
\settypeoutlayoutunit{mm}
\typeoutlayout
\typeoutstandardlayout
\begin{document}
\lipsum
\end{document}

在下面的图片中,页面与正常位置相反,即我的查看器将奇数页放在左侧而不是右侧 - 因此产生奇数间距效果。

单列,两列间距

memoir请注意,这与存在的理由相悖……

相关内容