如何在首字母缩略词表中按字母顺序排列首字母缩略词?

如何在首字母缩略词表中按字母顺序排列首字母缩略词?

我正在撰写科学研究文章,需要添加首字母缩略词表,因此我使用了以下命令:

\section*{List of Acronyms}  
\input{acro_list} 

并在文件中列出首字母缩略词acro_list,如下所示:

\begin{acronym}[MPC] % Give the longest label here so that the list is nicely aligned
\acro{WSN}{Wireless Sensor Networks}
\acro{MPC}{model predictive control}
\acro{TLA}{Three Letter Acronym}
\end{acronym}

以下是描述该问题的示例:

\documentclass{article}

\begin{document}

\newpage
\section*{List of Acronyms}  
\input{acro_list}
\newpage
\section{Introduction}
First document \ac{MPC}.
\end{document}

首字母缩略词表反映了acro-list文件中所写的无序首字母缩略词。因此,首字母缩略词将是:

  • WSN 无线传感器网络
  • MPC 模型预测控制
  • TLA 三个字母的缩写

我需要的是一种按字母顺序显示缩写词表中的缩写词的方法,但同时保留文件的使用acro-list,如下所示:

  • MPC 模型预测控制
  • TLA 三个字母的缩写
  • WSN 无线传感器网络

相关内容