
私が最終的に達成しようとしている目標は、偶数ページに説明を、奇数ページにそれに対応する画像を配置した文書です。通常、私は図のキャプション、引用、脚注を余白に挿入します。タフトラテックスパッケージ。ここでは、余白は常に右側にあります。
方法はありますか?余白注両面文書を常に右側に配置する場合、パラコル?
これは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}