
Utilizo el acronym
paquete para mis siglas. ¿Hay alguna manera de hacer que las siglas no estén en cursiva en la propia Lista de siglas pero usarlas en cursiva en el texto? La mayoría de las veces funciona, \textit{\acs{XY}}
pero cuando tengo un subíndice en el acrónimo no quiero que esté en cursiva. Por ejemplo, en el código siguiente quiero vincular Mint a la lista de acrónimos, "Min" debe estar en cursiva y el subíndice "t" no en cursiva. ¿Cómo puedo hacer eso?
\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}
Respuesta1
¿Es esto lo que buscas? Si es así, señalaría que se logró encerrando explícitamente el texto del subíndice en un archivo \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}