我想重命名词汇表中的标题。由于这链接仅提供重命名所有使用的词汇表的标题的功能,遗憾的是它没有用。是否有可能在之前重命名这些标题\printglossary
?
是否可以切换这些列的顺序,还是我必须制作自己的词汇表?
\documentclass{article}
\usepackage[
nomain,
toc,
stylemods=longbooktabs,
symbols,
abbreviations
]{glossaries-extra}
\makeglossaries
\newabbreviation{ie}{i.e.}{that is}%
\newabbreviation{wtf}{WTF}{What the f*ck}%
\newglossaryentry{ohm}{name={Ohm},type=symbols,symbol= {\ensuremath{\Omega}},description={unit of electrical resistance}}
\newglossaryentry{ibatt}{name={Batterycurrent},type=symbols,symbol={\ensuremath{I_{batt}}},description={Electric current of the battery}}
\begin{document}
\gls{ie}
\gls{wtf}
\gls{ibatt}
\gls{ohm}
\glssymbol{ibatt}
\glssymbol{ohm}
\printglossary[
type=abbreviations,
style=long3col-booktabs,
]
\printglossary[
type=symbols,
style=altlongragged4col-booktabs
]
\end{document}