答案1
由于您似乎想要创建一个未编号的附录部分,因此常规的\label
-\ref
交叉引用机制无法完成这项工作。相反,我建议您加载包hyperref
- 您可能已经这样做了 - 并使用该包的\hypertarget
-\hyperlink
机制,如下面的代码所示。
\documentclass[preprint,review,12pt]{elsarticle}
\usepackage[colorlinks]{hyperref}
\begin{document}
As will be shown in the \hyperlink{app}{appendix}, \dots
\appendix
\hypertarget{app}{\section*{Appendix. Mass matrix and gyroscopic matrix}}
Blabla \dots
\end{document}