내부 환경 부록을 사용할 때 \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}