Ich habe ein langes Dokument, für das ich den Modus nicht verwenden möchte twocolumn
, aber die verwendeten Ränder gefallen mir. Stattdessen werde ich manuell multicol
zwei Spalten erstellen (so kann ich Fußnoten und andere Dinge problemlos in einer einzigen Spalte unterbringen).
Vergleichen
\documentclass[12pt,twocolumn]{memoir}
\usepackage{lipsum}
\begin{document}
\lipsum
\end{document}
Zu
\documentclass[12pt]{memoir}
\usepackage{lipsum}
\usepackage{multicol}
\begin{document}
\begin{multicols}{2}
\lipsum
\end{multicols}
\end{document}
Das zweite hat wesentlich breitere Standardränder. Gibt es eine Möglichkeit, die Ränder in einem bestimmten memoir
Dokument anzuzeigen und sie in ein anderes zu kopieren?
(Der Grund, warum ich das mache, ist, weildiese Fragelässt mich glauben, dass die twocolumn
Option nicht wirklich das tut, was ich brauche.
Antwort1
memoir
bietet Einrichtungen, die meiner Meinung nach die gewünschten Informationen liefern (S. 25 der Dokumentation).
\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}
Die Ausgabe enthält dann diese Informationen:
******************************************************
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
******************************************************
Ich denke also, dass Sie so etwas möchten:
\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}
Im Bild unten sind die Seiten umgekehrt zur normalen Positionierung, d. h. mein Viewer platziert die ungeraden Seiten links statt rechts – daher der seltsame Abstandseffekt.
Beachten Sie, dass dies der memoir
Existenzberechtigung von widerspricht …