我有一个文档默认使用双倍行距。这对于正文来说没问题,但旁注占用了大量空间。
如何禁用边注的双倍行距?
\documentclass[english,aps,preprint]{revtex4} %preprint implied double spacing
\usepackage[footnote=true]{snotez} %footnotes as sidenotes
\begin{document}
bla \footnote{sidenote sidenote sidenote sidenote sidenote} %sidenotes use double spacing!! they use a lot of space
\end{document}
如果可能的话,我更喜欢一种解决方案,即改变侧注的样式而不向侧注添加命令。
我意识到我正在使用\marginpar
侧注,而不是\footnote
。
答案1
重置\linespread
侧注中的:
\documentclass[english,aps,preprint]{revtex4} %preprint implied double spacing
\usepackage[footnote=true]{snotez} %footnotes as sidenotes
\setsidenotes{text-format+=\linespread{1}\selectfont}
\begin{document}
bla \footnote{sidenote sidenote sidenote sidenote sidenote}
\end{document}