我想在我的文件中使用包含類別回憶錄的 setspace 套件。不幸的是,只要文檔類別是這樣的,這個套件就不起作用。我想減少行距。有沒有辦法讓它在該文件類別中運作?否則還有其他方法可以減少行間距嗎?
\documentclass{memoir}
\usepackage{setspace}
\begin{document}
one\\
{\setstretch{0.5}
two\\
three}
\end{document}
答案1
根據這個帖子,只需添加
\DisemulatePackage{setspace}
\usepackage{setspace}
在你的序言中。確保DisemulatePackage
出現在 之前usepackage
。