
Ich verwende das acronym
Paket für meine Akronyme. Gibt es eine Möglichkeit, die Akronyme in der Akronymliste selbst nicht kursiv zu machen, sie im Text aber kursiv zu verwenden? Meistens funktioniert das, \textit{\acs{XY}}
aber wenn ich einen Index im Akronym habe, möchte ich nicht, dass der Index kursiv ist. Im folgenden Code möchte ich beispielsweise Mint mit der Akronymliste verknüpfen. „Min“ sollte kursiv und der Index „t“ nicht kursiv sein. Wie kann ich das machen?
\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}
Antwort1
Ist es das, was Sie suchen? Wenn ja, möchte ich darauf hinweisen, dass dies dadurch erreicht wurde, dass der tiefgestellte Text explizit in ein eingeschlossen wurde \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}