
나는 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}