Paracol 破坏了八度封装的正确布局

Paracol 破坏了八度封装的正确布局

我正在使用 octavo 包将文档排版成一本书。一切都很顺利,直到我开始使用 paracol,这对于我想要的布局至关重要。请参阅 MWE。如果您注释掉 paracol 命令,章节将从奇数/右页开始,正如预期的那样。但是这种行为在 paracol 中消失了,章节从右页或左页开始,具体取决于前一章的文本长度。谢谢你的帮助。


\documentclass[foolscap, 12pt]{octavo}
\usepackage{xcolor}
\usepackage[marginparwidth=40pt, headsep=20pt]{geometry}
\usepackage[italian]{varioref}
%MULTIPLE COLUMNS
\usepackage{paracol}
\twosided[c]
\footnotelayout{m}
\columnsep=0.1\textwidth
\columnratio{0.65}
%Loading polyglossia to use unicode
\usepackage{fontspec}
\usepackage{polyglossia}
\usepackage{ebgaramond}
\setdefaultlanguage{italian}
\setotherlanguage{hebrew}
\newfontfamily{\hebrewfont}{New Peninim MT}

%\newcommand{\parline}{\par\noindent{\centering\makebox[.3\linewidth][s]{* * *}\par}}



%For bibliography

\usepackage[style=verbose-trad3, doi=false,isbn=false,url=false,eprint=false]{biblatex}

%\bibliography{Midrash.bib}

\usepackage{blindtext}

\begin{document}

\thispagestyle{empty}
{\huge This is a title page}

\chapter{1}
\blindtext[6]

\chapter{2}
\blindtext[2]


 \tableofcontents
\end{document}

答案1

问题出在 paracol 选项上:\twosided[c]

使用不带参数的 \twosided 命令可恢复书籍类的正常行为,并在两列环境中产生相同的结果。

相关内容