词汇表附录前的白页

词汇表附录前的白页

当我使用\printglossaries环境附录时,我得到了两个无法删除的额外白页。您知道如何删除它们吗?

这里有一个存在此类问题的MWE:

\documentclass[a4paper,11pt,titlepage,twoside,openright]{book}
\usepackage[makeindex,acronym,numberedsection,counter=chapter,nonumberlist]{glossaries} 
\usepackage[titletoc, page]{appendix}

\newacronym{abc}{ABC}{Alpha test}

\makeglossaries

\begin{document}
\chapter{Chapter 1}
\gls{abc}


\begin{appendices}

\phantomsection\addcontentsline{toc}{chapter}{Acronyms}
\printglossaries

\end{appendices}

\end{document}

答案1

好的,我从另一个角度解决了我的问题邮政。所以如果判断为重复则可以去除。

下面是具有我想要的输出的 MWE:

\documentclass[a4paper,11pt,titlepage,twoside,openright]{book}
\usepackage[makeindex,acronym,numberedsection,counter=chapter,nonumberlist]{glossaries} 
\usepackage[titletoc, page]{appendix}

\newacronym{abc}{ABC}{Alpha test}

\makeglossaries

\begin{document}
\chapter{Chapter 1}
\gls{abc}


\begin{appendices}

\begingroup     
\let\clearpage\relax        
\printglossaries
\endgroup

\chapter{Appendix B}

\end{appendices}

\end{document}

相关内容