有没有办法在首字母缩略词包中使用重音符号?我需要写出以下首字母缩略词 \ac{{Mónashell}},但这样不行,\ac{{M\´onashell}} 也不行,而且包文档似乎不包含重音符号。
\documentclass[a4paper,11pt,fleqn,twoside,openright]{memoir}
\usepackage[english]{babel}
\usepackage{acronym}
\begin{document}
frontmatter
\begin{acronym}[Sulfiloggerrrrrrrr]
\acro{M\´onashell}{seashell media biofiltration system from Bord na M\´ona}
\acro{WWTP}{wastewater treatment plant}
\acro{H2S}[\ce{H_{2}S}]{hydrogen sulphide}
\end{acronym}
\mainmatter
There are similarities between the observed removal of \ac{H2S} through biofiltration in this study and those described by \cite{Abraham2015}, who demonstrated a removal greater than 99 \% by the utilisation of the \ac{Mónashell} at Lake Wildwood \ac{WWTP}.
\end{document}
希望有人能帮助我解决这个问题:-)
答案1
避免在首字母缩写词键中使用特殊字符,就像对 所做的那样H2S
。
\documentclass[a4paper,11pt,fleqn,twoside,openright]{memoir}
\usepackage[english]{babel}
\usepackage[version=4]{mhchem}
\usepackage{acronym}
\begin{document}
\frontmatter
\begin{acronym}[Sulfiloggerrrrrrrr]
\acro{MS}[M\'onashell]{seashell media biofiltration system from Bord na M\'ona}
\acro{WWTP}{wastewater treatment plant}
\acro{H2S}[\ce{H_{2}S}]{hydrogen sulphide}
\end{acronym}
\mainmatter
There are similarities between the observed removal of \ac{H2S}
through biofiltration in this study and those described by
\cite{Abraham2015}, who demonstrated a removal greater than 99\%
by the utilisation of the \ac{MS} at Lake Wildwood \ac{WWTP}.
There are similarities between the observed removal of \ac{H2S}
through biofiltration in this study and those described by
\cite{Abraham2015}, who demonstrated a removal greater than 99\%
by the utilisation of the \ac{MS} at Lake Wildwood \ac{WWTP}.
\end{document}