
과학 연구를 작성 중인데 약어 표를 추가해야 하므로 다음 명령을 사용했습니다.
\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 무선 센서 네트워크