我需要在工作中参考代数系统 MAGMA 和 GAP。我经常看到人们以漂亮的方式将名字大写。他们是如何做到这一点的?
答案1
例如使用小型大写字母,此外xspace
还有:
\newcommand*{\MAGMA}{\textsc{magma}\xspace}
答案2
这是一种glossaries
方法(如果不仅仅有 GAP 和 MAGMA,这种方法可能会真正有用)
\documentclass{article}
\usepackage[nomain,acronym]{glossaries}
\newacronym{gap}{GAP}{Groups, Algorithms and Programming}
\newacronym{magma}{MAGMA}{Acronym still to be defined}
\makeglossaries
\glsunsetall
\begin{document}
\gls{magma} and \gls{gap} are useful computer algebra software systems.
%\printacronyms
\end{document}