如何在双面模式下在页面内侧添加边距注释?

如何在双面模式下在页面内侧添加边距注释?

如何在双面模式下仅在偶数页的页面内侧添加边距注释?

答案1

使用\reversemarginpar切换到\marginpars 的一侧。这是一个全局设置,即不会局限于当前组/环境。但是\normalmarginpar会切换回正常一侧。

答案2

KOMA 脚本twoside=semi类提供了像在模式下一样排版运行页眉/页脚的选项twoside,但设置页边距和位置\marginpar就像在oneside模式下一样(即,“仅在偶数页的页面内侧”)。

\documentclass[twoside=semi]{scrbook}

\usepackage{lipsum}

\begin{document}

\chapter{foo}

\section{bar}

Some text.\marginpar{Some text.} \lipsum[1-5]

Some text.\marginpar{Some text.} \lipsum[1-5]

\end{document}

相关内容