使用 footmisc 在右边距添加脚注

使用 footmisc 在右边距添加脚注

我的脚注显示在外边距,但我希望它们只显示在右边距。我该怎么做?

\documentclass{book}

\usepackage[right=7cm]{geometry}
\usepackage[side, flushmargin]{footmisc}

\begin{document}

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the 
industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries\footnote{testing}, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

\newpage

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised \footnote{testing} in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

\end{document}

答案1

如果您正在使用\documentclass[twoside]{book},则可以使用etoolbox包:

\usepackage{etoolbox}
\makeatletter 
\patchcmd{\@addmarginpar}{\ifodd\c@page}{\ifodd\c@page\@tempcnta\m@ne}{}{}
\makeatother
\reversemarginpar 

(要将你的笔记移至左边距,只需发表评论\reversemarginpar

相关内容