我使用该acronym
包来处理我的首字母缩略词。有没有办法让首字母缩略词在首字母缩略词列表本身中不显示斜体,但在文本中以斜体形式使用它们?大多数情况下都可以使用,\textit{\acs{XY}}
但是当我在首字母缩略词中有下标时,我不希望下标显示斜体。例如,在下面的代码中,我想将 Mint 链接到首字母缩略词列表,“Min”应该是斜体,而下标“t”应该是非斜体。我该怎么做?
\documentclass[oneside, english, 12pt]{book}
\usepackage{acronym}
\begin{document}
\begin{acronym}
\acro{Mint} [Min\textsubscript{t}]{Position of Minimum}
\end{acronym}
'Min' should be italic and the subscript 't' nonitalic.
And the whole word linked to the acronym list \textit{\acs{Mint}}
\end{document}
答案1
这是您想要的吗?如果是这样,我会注意到它是通过将下标文本明确地括在 中来实现的\textup{}
。
\documentclass[oneside, english, 12pt]{book}
\usepackage{acronym}
\begin{document}
\begin{acronym}
\acro{Mint} [Min\textsubscript{\textup{t}}]{Position of Minimum}
\end{acronym}
'Min' should be italic and the subscript 't' nonitalic.
And the whole word linked to the acronym list \textit{\acs{Mint}}
\end{document}