paracol 與 marginnote 始終位於右側

paracol 與 marginnote 始終位於右側

我試圖最終實現的目標是在偶數頁上有解釋並在奇數頁上有相應圖像的文檔。通常,我使用簇絨乳膠包裹。在那裡,邊距總是在右邊。

有沒有辦法擁有邊註使用時,雙面文件的始終位於右側帕拉科爾

這是一個 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 的簇絨書版本。

答案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}

相關內容