
Цель, которую я пытаюсь в конечном итоге достичь, — это документ, в котором у меня есть пояснения на четных страницах и соответствующие изображения на нечетных. Обычно я размещаю подписи к рисункам, цитаты и сноски на полях, используяtufte-latexПакет. Там поле всегда справа.
Есть ли способ сделать так, чтобызаметка на поляхдвустороннего документа всегда справа, при использованиипаракол?
Вот 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}