如何在双面模式下仅在偶数页的页面内侧添加边距注释?
答案1
使用\reversemarginpar
切换到\marginpar
s 的一侧。这是一个全局设置,即不会局限于当前组/环境。但是\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}