我有以下代码:
\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
之间预先存在的空格。任何对这个附加问题的解决方案也非常受欢迎。Appendix
A