同样的疑问这个但关于acro
包裹。
我该如何防止章节、标题和目录的扩展?
平均能量损失
%\documentclass{book}
\documentclass{article}
\usepackage{acro}
\DeclareAcronym{asset}{%
short=asset,
long= underlying asset,
}
\DeclareAcronym{assetclass}{%
short=asset class,
long=asset class,
}
\begin{document}
%\acresetall
\tableofcontents
%\chapter{\Ac{asset} vs \ac{assetclass}}
\section{Don't get confused between \ac{asset} and \ac{assetclass}}
This is the demonstration of the usage of \ac{asset}---which is not to be confused with \ac{assetclass}.
\printacronyms
\end{document}
答案1
有了软件包作者的评论,一切都变得更容易了:)
\ac*
\Ac*
使用、\Acs
等命令的“star”版本解决问题
\documentclass{article}
\usepackage{acro}
\DeclareAcronym{asset}{%
short=asset,
long= underlying asset,
}
\DeclareAcronym{assetclass}{%
short=asset class,
long=asset class,
}
\begin{document}
%\acresetall
\tableofcontents
\section{Don't get confused between \acs*{asset} and \acs*{assetclass}}
This is the demonstration of the usage of \ac{asset}---which is not to be confused with \ac{assetclass}.
\printacronyms
\end{document}