
私は科学研究を書いており、頭字語テーブルを追加する必要があるため、次のコマンドを使用しました。
\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 3文字の頭字語
acro-list
必要なのは、以下のように、ファイルを使用しながら、頭字語テーブルで頭字語をアルファベット順に表示する方法です。
- MPCモデル予測制御
- TLA 3文字の頭字語
- WSN ワイヤレスセンサーネットワーク