我需要在论文中加入命名法,我的大学使用下面的格式,有人能建议如何制作这种格式吗?还包括希腊符号、下标和上标。
编辑
事实上,我写了这个
\usepackage{siunitx}
\usepackage[acronym,toc,nopostdot,nonumberlist]{glossaries}
\usepackage{glossary-mcols}
\setlength{\columnsep}{25pt}
\setlength{\glsdescwidth}{10cm}
\newglossary[slg]{symbolslist}{syi}{syg}{List of Symbols}
\newglossary[gree]{greeklist}{greei}{greeg}{List of Greek Symbols}
\glsaddkey{unit}{\glsentrytext{\glslabel}}{\glsentryunit}{\GLsentryunit }{\glsunit}{\Glsunit}{\GLSunit}
\makeglossaries
%===================================================
%----------------Roman Symbols----------------------
%===================================================
\newglossaryentry{diameter}{name=\ensuremath{D, d},
description={Diameter of bearing, journal respectively},
unit={\si{m}},
type=symbolslist}
\newglossaryentry{clearance}{name=\ensuremath{c},
description={radial clearance},
unit={\si{m}},
type=symbolslist}
%===================================================
%------------------Greek Symbols--------------------
%===================================================
\newglossaryentry{speed}{name={\ensuremath{\omega}},
description={Rotating Speed},
unit={\si{rad/s}},
type=greeklist}
\newglossaryentry{epsilon}{name={\ensuremath{\epsilon}},
description={Eccentricity ratio},
unit={},
type=greeklist}
\newglossarystyle{symbunitlong}{%
\setglossarystyle{long3col}
\renewenvironment{theglossary}{%
\begin{longtable}{lp{0.6\glsdescwidth}>{\centering\arraybackslash}p{1cm}}}
\end{longtable}
%
\renewcommand*{\glossaryheader}{%
\bfseries Sign & \bfseries Description & \bfseries Unit \\
\hline
\endhead}
\renewcommand*{\glossentry}[2]{%
\glstarget{##1}{\glossentryname{##1}} %
& \glossentrydesc{##1}% Description
& \glsunit{##1} \tabularnewline }}