删除 elsarticle 附录中的命名法标题

删除 elsarticle 附录中的命名法标题

我有以下代码:

\documentclass[authoryear, review]{elsarticle} %preprint

\usepackage{xpatch}
\usepackage{nomencl} 

\xpatchcmd{\thenomenclature}{%
  \section*{\nomname}% Look for `\section*... etc.
}{% Replace it by 'nothing'
}{\typeout{Success}}{\typeout{Failure}}

\makenomenclature 

\begin{document}
\section{Section example}
This is my text, where variables appear.
\nomenclature[1]{$\mu$}{Example variable}

\appendix
\section{Definition of model variables}
\printnomenclature[0.9in]
\end{document}

如您所见,我在附录中有一个命名法,我用它xpatch来删除命名法包添加的命名法标头。这曾经有效,但我更新了我的elsarticle课程,我认为这就是它停止工作的原因。如果我能得到一些帮助来解决这个问题,我将不胜感激。

另外,关于附录,我想Appendix从附录标题中删除该词,包括其后的空格。我添加了:

\let\appendixname\relax

... 到序言部分,但这样虽然删除了单词,但也保留了和Appendix之间预先存在的空格。任何对这个附加问题的解决方案也非常受欢迎。AppendixA

相关内容