仅右侧有边注

仅右侧有边注

我想知道如何使用双面文档类仅在文档右侧添加边注。这是我序言的一部分:

\documentclass[12pt,a4paper,footinclude=true,twoside,headinclude=true]{scrbook}
\XeTeXinputencoding iso-8859-1
\usepackage{setspace} 
\usepackage{scrpage2}
\usepackage{graphicx}  %% For \scalebox
\usepackage[linedheaders,parts,pdfspacing,dottedtoc]{classicthesis}

答案1

使用 KOMA 选项可以非常轻松地完成此操作twoside=semi

domiClassicthesisTwosideSemi

\documentclass[twoside=semi,%<---------
    headinclude,footinclude=true,open=any
]{scrbook}

\usepackage[eulerchapternumbers]{classicthesis}

\usepackage{showframe}
\usepackage{blindtext}
\renewcommand{\chapterpagestyle}{scrheadings}%<--- for testing only

\begin{document}

\chapter{Walzing Wombat}
\blindtext\marginpar{pogo penguin}
\chapter{Rock and Roll Rabbit}
\blindtext\marginpar{Samba Snake}

\end{document}

答案2

我使用了与 Walter Pauk 书中的问题类似的布局如何在大学里学习

\documentclass[twoside,11pt]{book}
\usepackage[top=2cm,bottom=2cm,left=2cm,right=7cm,asymmetric,marginparsep=10mm]{geometry}
\normalmarginpar %Use \reversemarginpar to change to side of \marginpar.

这是一个全局设置,即不会局限于当前组/环境。

但是又\normalmarginpar切换回正常状态。

仅在右侧的边注[1

根据 Martin Scharrer 提供的出色答案。

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

相关内容