不要なスペースのある用語集

不要なスペースのある用語集

私は現在論文を書いています。頭字語リストに用語集パッケージを使用したのですが、期待する結果が得られませんでした。頭字語の間に不要なスペースが入ってしまいました。私はこのパッケージの初心者で、知識も限られています。スペースを減らすのを手伝っていただけますか。私が使用した LaTeX コードは次のとおりです。

\documentclass{report}

\usepackage{graphicx}
\usepackage[colorlinks]{hyperref}
 \usepackage[savewrites,nopostdot,toc,acronym,symbols]{glossaries}
\usepackage{glossary-mcols}
\usepackage{glossary-longragged}


\newacronym{CICS}{CICS}{Customer Information Control System}
\newacronym{EHDM}{EHDM}{Enhanced Hierarchical Development Methodology}
\newacronym{ASF}{ASF}{Algebraic Specification Formalism}
\newacronym{ProCos}{ProCos}{Provably Correct Systems}
\newacronym{HOL}{HOL}{Higher Order Logic}
\newacronym{LOTOS}{LOTOS}{Language Of Temporal Ordering Specification}
\newacronym{CCS}{CCS}{Calculus of Communicating Systems}
\newacronym{CSP}{CSP}{Communicating Sequential Processes}
\newacronym{RAISE}{RAISE}{Rigorous Approach to Industrial Software Engineering}
\newacronym{VDM}{VDM}{Vienna Development Method }
\makeglossaries
\begin{document}
\tableofcontents
\chapter{Sample}
This is a sample document that uses the dummy glossary entries
 supplied with the glossaries bundle for testing.
\gls{ASF} \gls{CICS}
 Here are all the entries (including acronyms):

\gls{ASF} \gls{CICS} \gls{CSP} \gls{ProCos}
\gls{VDM} \gls{RAISE} \gls{CCS} \gls{ASF}
\gls{HOL} \gls{EHDM}
 \printglossary[type=acronym,style=super]

 \end{document} 

そして私の出力結果

ここに画像の説明を入力してください

手伝っていただけませんか ?

答え1

nogroupskip@Piet van Oostrum がコメントしたように、解決策はのオプションを使用することです\usepackage{glossaries}

これが私のMWEです

\documentclass{report}

\usepackage{graphicx}
\usepackage[colorlinks]{hyperref}
\usepackage[savewrites,nopostdot,toc,acronym,symbols,nogroupskip]{glossaries}
%\usepackage{glossary-mcols}
%\usepackage{glossary-longragged}  These are redundant
\makeglossaries % it's better practice to have this before the acronyms and gls definitions

\newacronym{CICS}{CICS}{Customer Information Control System}
\newacronym{EHDM}{EHDM}{Enhanced Hierarchical Development Methodology}
\newacronym{ASF}{ASF}{Algebraic Specification Formalism}
\newacronym{ProCos}{ProCos}{Provably Correct Systems}
\newacronym{HOL}{HOL}{Higher Order Logic}
\newacronym{LOTOS}{LOTOS}{Language Of Temporal Ordering Specification}
\newacronym{CCS}{CCS}{Calculus of Communicating Systems}
\newacronym{CSP}{CSP}{Communicating Sequential Processes}
\newacronym{RAISE}{RAISE}{Rigorous Approach to Industrial Software Engineering}
\newacronym{VDM}{VDM}{Vienna Development Method }

\begin{document}
    \tableofcontents
    \chapter{Sample}
    This is a sample document that uses the dummy glossary entries
    supplied with the glossaries bundle for testing.
    \gls{ASF} \gls{CICS}
    Here are all the entries (including acronyms):

    \gls{ASF} \gls{CICS} \gls{CSP} \gls{ProCos}
    \gls{VDM} \gls{RAISE} \gls{CCS} \gls{ASF}
    \gls{HOL} \gls{EHDM}
    \printglossary[type=acronym,style=super]

\end{document} 

\usepackage{glossary-mcols}とをコメントアウトしたことに気づいてください\usepackage{glossary-longragged}。さらに、\makeglossaries頭字語(および用語集)の定義の前に移動しました

関連情報