增加首字母缩略词列表中缩写和全文之间的间距

增加首字母缩略词列表中缩写和全文之间的间距

我在两栏科学论文中插入一些首字母缩略词。我的一些缩写很大,并且与其定义重叠。我正在使用 acro 包。有没有办法增加缩写和其定义之间的空间,使它们不重叠?

`\documentclass[journal]{IEEEtran}
\usepackage{acro}
\include{Nomenclature}
\DeclareAcronym{bcdla}{
 short = BCDLA ,
 long  = Branch Current Decomposition method for Losses Allocation ,
 }
 \DeclareAcronym{nlaf}{
short = NLAFs ,
long  = Neutral Losses Allocation Factors ,
}
\begin{document}
\printacronyms[sort=true]
\section{Introduction}
This is a \ac{bcdla} approach, utilizing \ac{nlaf}.
\end{document}`

答案1

IEEE 样式重新定义了description环境,从而导致了此问题。要暂时更改此行为,您可以使用 IEEE 用户指南中的以下技巧:

\documentclass{IEEEtran}
\usepackage{acro}
%\include{Nomenclature}
\DeclareAcronym{bcdla}{
 short = BCDLA ,
 long  = Branch Current Decomposition method for Losses Allocation ,
 }
 \DeclareAcronym{nlaf}{
short = NLAFs ,
long  = Neutral Losses Allocation Factors ,
}

\begin{document}
\renewcommand{\IEEEiedlistdecl}{\IEEEsetlabelwidth{SONET}}
\printacronyms[sort=true]
\renewcommand{\IEEEiedlistdecl}{\relax}% reset back

\section{Introduction}
This is a \ac{bcdla} approach, utilizing \ac{nlaf}.
\end{document}

在此处输入图片描述

相关内容