如何反转 tufte-book 的边距?

如何反转 tufte-book 的边距?

我想更改tufte-book(twoside)论文中类别的位置。在正常模式下,奇数页的页边距在页面右侧,偶数页的页边距在页面左侧。我想更改页边距的位置。

普通的: 在此处输入图片描述

撤销: 在此处输入图片描述

答案1

您的论文是用 RTL 语言编写的吗?如果是,并且假设twoside使用了选项并bidi加载了包,那么bidi包会处理这个问题,并在 RTL 模式下将奇数页的边距放在 LHS 上,在 RTL 模式下将偶数页的边距放在 RHS 上。以下是一个例子:

....
\usepackage{ptext}
\usepackage[demo]{graphicx}
\usepackage{xepersian}
\begin{document}
\ptext[1]
\begin{marginfigure}
\centering
\includegraphics[width=\textwidth]{demo}
\caption{این یک شکل است}
\end{marginfigure}
\ptext
\end{document}

输出如下:

在此处输入图片描述

bidi使用包和拉丁字符的相同示例:

...
\usepackage{lipsum}
\usepackage[demo]{graphicx}
\usepackage[RTLdocument]{bidi}
\begin{document}
\lipsum[1]
\begin{marginfigure}
\centering
\includegraphics[width=\textwidth]{demo}
\caption{This is a figure}
\end{marginfigure}
\lipsum
\end{document}

相关内容