How can I add margin notes on inner side of a page only for even pages in two sides mode?
Asked
Active
Viewed 1,418 times
2 Answers
12
Use \reversemarginpar to change to side of \marginpars. This is an global setting, i.e. won't be limited to the current group/environment. However \normalmarginpar switches back to the normal side.
Martin Scharrer
- 262,582
6
The KOMA-Script classes offer the option twoside=semi which will typeset running headers/footers like in twoside mode, but set page margins and position \marginpars as if in oneside mode (i.e., "on [the] inner side of a page only for even pages").
\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}
lockstep
- 250,273