paracol 的边注始终位于右侧

paracol 的边注始终位于右侧

我最终的目标是在文档中将说明放在偶数页,将相应的图像放在奇数页。通常,我会使用凝缩乳胶包。在那里,边距始终在右侧。

有没有办法边注双面文档始终在右侧,使用时帕拉科尔

这是一个 MWE,marginnote其中不是放入边距。

\documentclass{tufte-book}

\let\tuftenote=\marginnote
\let\marginnote\relax% make compatible
\RequirePackage{marginnote}

\usepackage{graphicx, paracol, lipsum, showframe}

\begin{document}
    \begin{paracol}[1]*{2}  
    \switchcolumn[1]\section{Introduction}
    \switchcolumn[0]*
    \switchcolumn[1]
    \marginnote{Bar}
    \lipsum
    \switchcolumn[0]
    \marginnote{Figure 1: Foo}%
    \noindent\includegraphics[width=\textwidth]{example-grid-100x100pt}
    \end{paracol}
\end{document}

这不是问题tufte-book,因为我可以观察到相同的效果article

\documentclass{article}

\usepackage[showframe,
a4paper,
left=24.8mm,
top=27.4mm,
headsep=2\baselineskip,
textwidth=107mm,
marginparsep=8.2mm,
marginparwidth=49.4mm,
textheight=55\baselineskip,
headheight=\baselineskip]{geometry}

\usepackage{graphicx, paracol, marginnote, lipsum}

\begin{document}
    \begin{paracol}[1]*{2}  
    \switchcolumn[1]\section{Introduction}
    \switchcolumn[0]*
    \switchcolumn[1]
    \marginnote{Bar}
    \lipsum
    \switchcolumn[0]
    \marginnote{Figure 1: Foo}%
    \noindent\includegraphics[width=\textwidth]{example-grid-100x100pt}
    \end{paracol}
\end{document}

在此处输入图片描述

这是 MWE 的 tufte-book 版本。

答案1

这似乎可以解决问题:

\documentclass{tufte-book}

\let\tuftenote=\marginnote
\let\marginnote\relax% make compatible
\RequirePackage{marginnote}

\usepackage{graphicx, paracol, lipsum, showframe}

\twosided
\reversemarginpar

\begin{document}
    \begin{paracol}[1]*{2}  
    \switchcolumn[1]\section{Introduction}
    \switchcolumn[0]*
    \switchcolumn[1]
    \marginnote{Bar}
    \lipsum
    \switchcolumn[0]
    \marginnote{Figure 1: Foo}%
    \noindent\includegraphics[width=\columnwidth]{example-grid-100x100pt}
    \end{paracol}
\end{document}

相关内容