我想知道如何使用这个脚本(主要是因为它可以设置术语部分的样式,因为我知道我可以使用\acrshort
等等)并引用报告正文中的符号和缩写词?脚本和“样式术语”如下所示。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\newcommand\MySymbol[3]{\makebox[0.2\textwidth][l]{#1} \makebox[0.6\textwidth][l]{#2} \makebox[0.2\textwidth][l]{[#3]}\\[0.5em]}
\newcommand\MyAcronym[2]{\makebox[0.2\textwidth][l]{#1} \makebox[0.6\textwidth][l]{#2}\\[0.5em]}
\section{Nomenclature}
\subsection*{List of Symbols}
\MySymbol{$A$}{Frontal surface area vehicle}{m\textsuperscript{2}}
\subsection*{Acronyms}
\MyAcronym{ARMA}{Auto Regressive Moving Average}
\end{document}